I am building a project in VS2005 and some of my DLLs are not registered. The error message I get in Visual Studio:
Project: error PRJ0019: the tool returned an error code from "Registering an ActiveX control ..."
which is very vague. When I register the DLL manually through the command line (using regsv32.exe, I get the following error:
Error LoadLibrary ("test.ocx") - this application could not be started because the application configuration is incorrect. Reinstalling the application may fix the problem.
I ran Dependency Walker ( depends.exe) in a .ocx culprit file, but it does not detect any obvious problems.
I also reassembled it, but I am still getting the same problem.
Any suggestions on how I can determine the reason for this refusal to register?
source
share