|
Subject:
|
Create an ActiveX DLL ....
|
|
Posted By:
|
miglou
|
Post Date:
|
9/23/2003 5:18:39 AM
|
Hello all, i'm new in this things... i create a ClassLibrary project(and checked "Register for COM Interop" option), to make a DLL, but would like to define the Startup Object....isn't possible???
|
|
Reply By:
|
planoie
|
Reply Date:
|
9/23/2003 8:43:49 AM
|
A. When .Net builds the library it always goes to a DLL, but it's a .Net Assembly DLL not a COM dll. Unless you actually need to use this .Net assembly from a COM application, you do not need to check "Register for COM Interop".
B. There is not startup object in a Class Library. It's a library, not an application. Sounds like you need to create another project (Windows Forms App perhaps?) so you can test your library.
Peter
|