12-11-2007 04:26 PM
12-11-2007 04:58 PM
Hi Derek_C,
Typically I have seen that error when certain dependencies that your
application needs can't be found. For example, suppose you statically linked to
a DLL and that DLL can't be found on the target machine. When the application
tries to load, it will also try and load the DLL. If the DLL can't be found,
then an error is thrown.
It makes sense that it might work on your dev machine since it probably
contains all the needed dependencies. You could use a tool like
Dependency Walker to see what static dependencies you have.
Once you have figured out what files you need, make sure to include them in
your installer.
Hope this helps!
Best Regards,
12-11-2007 05:10 PM