On Sep 7, 12:22 pm, Chris Davoli
<ChrisDav... (AT) discussions (DOT) microsoft.com> wrote:
Quote:
I'm getting the error message "Class not registered (Exception from HRESULT:
0x80040154 (REGDB_E_CLASSNOTREG))" I have an interop component that a vendor
sent. I get the following error when I register that component in the debug
directory:
AxInterop.ISITELib.dll was loaded, but the dllRegisterServer entry point was
not found. The file can not be registered.
What am I doing wrong?
--
Chris Davoli |
My guess is that you need to register the COM component itself, not
the assembly file AxInterop.ISITELib.dll.
Copy the COM component to the system directory (guees this is the
name, ISITELib.dll)
Use regsvr32 to register the component (using run,...)
"regsvr32 C:\windows\system32\ISITELib.dll"
If registeration succeeds, Open project and attempt to find and set a
refernce to the COM component using COM tab (should be there now).
MH