How to copy a Form from one solution to another solution?

  • Thread starter Thread starter AlexAngAB
  • Start date Start date
A

AlexAngAB

I am using Visual Studio.Net 2003.
1. How to copy a Form from one solution to another solution?
2. How to copy a Form within the same solution?
Thanks.
 
Hi,

First one is right click the project in which you wish to add the
existing form in another solution and choose "Add, Exisiting Item" then
navigate into the forms directory and add it.

The second one really you should just call another instance if you
already have it. For example;

Dim frm as new MyFormName
frm.Show(me)

Regards,
Pace
 
Thanks.

Hi,

First one is right click the project in which you wish to add the
existing form in another solution and choose "Add, Exisiting Item" then
navigate into the forms directory and add it.

The second one really you should just call another instance if you
already have it. For example;

Dim frm as new MyFormName
frm.Show(me)

Regards,
Pace
 
Back
Top