|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
How to copy a Form from one solution to another solution?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 AlexAn***@gmail.com wrote: Show quote > 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. Thanks.
pace***@googlemail.com wrote: Show quote > 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 > > > AlexAn***@gmail.com wrote: > > 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. |
|||||||||||||||||||||||