-
ActiveX DLL register
When I compile and run ActiveX DLL application, I am able to see the application.
However, if another developer tries to run the application, an error message says error #429, "ActiveX component can't create object." In order to correct this, the developer has to recompile the application, or goto add references menu option in VB and add ActiveX DLL to the reference list AGAIN.
Afterwards, I end up getting the message,"ActiveX component can't create object."
If i correct this, the other developer will get the same error message again. How can I fix this??
-
Re: ActiveX DLL register
The ActiveX must be installed on the computer.
Try : regsvr32 MyActiveX.dll
-
Re: ActiveX DLL register
Change your project's compatibility to Project compatibility or Binary compatibility
-
Re: ActiveX DLL register
As the dll's are operating system specific you can't use a dll that is registered in one system in another ...You need to register the dll in the regedit of that machine where you are trying to use the dll ...
resvr32 "<dllPath>"