Click here to Skip to main content
15,896,489 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
sir,
i have designed two windows application in C#.net and i have to join these two.
and run one in other..i.e.call seconds home page into first one..
how can i call it.. (not calling .exe file)
Posted

you are developed a window application of 2 different? correct..


in window application you can not merge 2 individual forms.... but if you want to view the other form then go for this code



->take one window applciation..
->Add the forms which your are already done in other window application..\

ex:
1.goto solution explorer
2.select your project,right click and select add existing items.
3.small window will open then select all the forms you are all ready done and add

-> so all the forms of other project will going to add here.
->now if you want to view the form2 in form1 then use the following code in button click or any other events..


Form2 fr=new Form2();
fr.show();
 
Share this answer
 
You have a number of options:

  1. Merge the two programs so that they run as one combined executable, with multiple classes or forms.
  2. Make one project a DLL that can be called by the first one.
  3. Use the Process class to run the second as an independent executable
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900