Deploy COM library

  • Thread starter Thread starter NooS
  • Start date Start date
N

NooS

Hi.
I'm a newbie of .NET tecnology.
I try to develop a Class library project with Visual Studio 2005.
I add a COM class at this project.
I write my method and properties.
I compiling the library and obtain a dll file.
Well, when i try to register the DLL COM library, regsvr32 return this error:
....the entry point DllRegisterServer is not found.
What is the problem?
Where is the mistake?

Thank you if you can help me.
 
NooS <[email protected]>'s wild thoughts were
released on Fri, 22 Feb 2008 05:11:00 -0800 bearing the
following fruit:
Hi.
I'm a newbie of .NET tecnology.
I try to develop a Class library project with Visual Studio 2005.
I add a COM class at this project.
I write my method and properties.
I compiling the library and obtain a dll file.
Well, when i try to register the DLL COM library, regsvr32 return this error:
...the entry point DllRegisterServer is not found.
What is the problem?
Where is the mistake?

You need to use regasm.

http://weblogs.asp.net/psteele/archive/2004/06/16/157767.aspx
 
Back
Top