Export a DLL file from project

TALSOFT

Active member
Joined
Feb 23, 2012
Messages
34
Programming Experience
5-10
I have a windows form that is part of the project called play.vb I want to export it as a DLL file which the application when compiled can load because I plan on updating this individual file later how do I go about doing this
 
Hi,

You can easily change your application from a Forms Application to a Class Library by clicking on Project -> YourApplicationName Properties and then in the Application tab you can change the Application Type to Class Library. This can then be complied to a DLL file and then used like any other Class Library in your other applications.

Hope that helps.

Cheers,

Ian
 
Thanks Ian, I am aware of how to change it. What I was asking was if it was possible to export one form and module from a project and turn it into a DLL file. Without having to create a new project and doing 1,000,000 steps. Or can I just compile 1 forum in a project Separately.
 
Back
Top