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

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.
 
P

pace.uk

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
 
A

AlexAngAB

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top