i wanna a create a project with one .exe file and remaining files as .dll. i have 24 forms in my windows application. am using Vb.net
+2
A:
So your question is? Assuming you know how to use Visual Studio go ahead and develop normally, you would need a new project for each physical output file you want to create (.exe or .dll). To choose how each is compiled you right click on the project, choose properties and change output type accordingly:
- Class Library creates a DLL
- Windows Application creates an EXE
You don't mention the reasons behind doing this, if you maybe elaborate more we could probably provide more tailored advice.
m.edmondson
2010-09-07 10:58:42
A:
Sounds to me like you want to add a Class Library project to you solution and add your other files in there, this will then compile to a .dll as well as your .exe. To add the class library, right click on your solution and choose add new item, then selected class library.
Ben
2010-09-07 11:12:59