LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

DLL use on an other PC

Hello
 
i wrote a program on an PC. It works.
I pack the program in a distribution und install it on another PC.
I copy the extern dll into the systemdirektion.
It dosen't work correct, but i didn't become a error message too.
Can you help me?
Thanks
 
0 Kudos
Message 1 of 3
(3,010 Views)

The following cases are typically thinkable for a DLL that may not work correctly on the target PCs, when you have just copied the DLL:

1)DLL is built as a COM DLL, but not "registered" on the target PC.
2)DLL has some dependency to other DLLs (such as 3rd party components), but they do not exist or not correctly installed on the target PC.
3)DLL has some dependency to specific Windows version, but the target PC OS is different.
4)DLL is build as a legacy non-COM DLL but its location is not specified by PATH environment variable.  (This case is not thinkable in your case because you copied the DLL into Windows/System32 directory.)

Is any case matched?

There is a good tool, which checks DLL's dependency.  It may help for your problem.
http://www.dependencywalker.com/

0 Kudos
Message 2 of 3
(2,988 Views)
Thanks
 
It runs now.
The problem was a forgot file für the dll. It need it too.
 
Bye
 
0 Kudos
Message 3 of 3
(2,976 Views)