What does it usually mean when you recieve this error:
ActiveX Server returned an error: Library not registered :confused:
Any help is appreciated.
Thank you
Printable View
What does it usually mean when you recieve this error:
ActiveX Server returned an error: Library not registered :confused:
Any help is appreciated.
Thank you
Your COM Server is probably either missing a reference to an object that you reference in your code, or the object that you're referencing is missing on the system. (missing dll or ocx).
Maybe you have to register your dll
use this command:
C:\WINNT\system32\regsvr32.exe mydll.dll
to register
If you want to unregister:
C:\WINNT\system32\regsvr32.exe mydll.dll /u