Add a form from another VB project

celtic

New member
Joined
May 30, 2010
Messages
4
Programming Experience
1-3
Hi all.

I was wondering if there is an easy way to add a form from a previously developed vb project.
For example, if I want to re-use code from another program I can just open the project in the IDE and copy it, then open the new program and paste.

How can I do something similar with forms so that the controls and code are intact, but that the new application has the form in it's project folders. That is, I don't want to have a link to the original project somehow but a copy of the original form (with controls and form code) under the new project's folders.

Thank you in advance

Celtic
 
Select "Add Existing Item...", browse to the other project folder and select the formName.vb file.
 
Back
Top