>i make a DLL with COM interop support.
> but regsvr32 fails.
> what can i do to register the DLLs?
> TIa.
If for some reason you don't want to install your interop assembly into the
GAC, you can also pass the /codebase option to regasm.exe:
regasm.exe /codebase /tlb Interop.MyLib.dll
This will register the fully-qualified path to the assembly in the registry.
The reason regasm.exe has to be used is because a CCW (COM-Callable Wrapper)
doesn't expose DllRegisterServer and DllUnregisterServer like native DLLs or
OCXs might. mscoree.dll actually acts like a shim, hosting the CLR, loading
the CCW, and marshaling calls to and from managed code.

Signature
This posting is provided "AS IS" with no warranties, and confers no rights.
Software Design Engineer
Developer Division Sustained Engineering
Microsoft
> >i make a DLL with COM interop support.
> > but regsvr32 fails.
[quoted text clipped - 9 lines]
>
> > TIa.