DLL not install

H

Hughesy

After developing and replication a db which is working perfectly on a a
number of machines. I placed a replica on one machine at work and it just
keeps says that a certain DLL is not installed. When I take this exact
replica and place it on another computer it works perfectly. Another points
that the computers are all identical.
 
R

Ron Hinds

Hughesy said:
After developing and replication a db which is working perfectly on a a
number of machines. I placed a replica on one machine at work and it just
keeps says that a certain DLL is not installed. When I take this exact
replica and place it on another computer it works perfectly. Another points
that the computers are all identical.

You need to copy that DLL from a machine that works to the machine that
doesn't work. Then, open a command prompt. Change to the directory you
copied the DLL into (e.g. WINNT\System32). Then run the following command:

regsvr32 dllname.DLL

Replace dllname with the actual name of the DLL. You should be able to use
your project now.
 
H

Hughesy

thanks that works great

Ron Hinds said:
You need to copy that DLL from a machine that works to the machine that
doesn't work. Then, open a command prompt. Change to the directory you
copied the DLL into (e.g. WINNT\System32). Then run the following command:

regsvr32 dllname.DLL

Replace dllname with the actual name of the DLL. You should be able to use
your project now.
 
Top