[RESOLVED] DllRegisterServer entry point was not found
I am new to .net but hopefully someone can help me here.
I created a new class library in Visual Studio
Added the code from this page.
Added the relevant references.
Built the dll.
Tried to register it using regsvr32 but get an error saying
dll loaded, but the DllRegisterServer entry point was not found. The file can not be registered.
Is there any step I'm missing here?
Re: DllRegisterServer entry point was not found
Only ActiveX DLLs & Controls can be registered using RegSvr32 ... .NET DLLs don't.
-tg
Re: DllRegisterServer entry point was not found
Yea..sorry.
I'm used to VB6 dlls. Just worked out that I needed to load the DLL into the application itself rather than Windows in general (if that makes sense).
Still learning. Thanks.