Hi
In VB.Net , How can i convert form to dll
thanks
Printable View
Hi
In VB.Net , How can i convert form to dll
thanks
They are two completely different things. If you want a DLL then you need to create a project whose output is a class library. If you have an existing Windows Forms application project then you can change the output type in the project properties. If you're starting from scratch then you create a new project and select Class Library or Windows Control Library as the type. Both will output a DLL but the Windows Control Library has references to some required libraries that you'll have to add manually to a Class Library project.