Click here to Skip to main content
15,890,438 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to integrate all the windows application?i already designed two windows application.i want to design one windows application in tat application during button click event i want to call tat these two applications
Posted
Comments
krumia 26-Mar-12 3:11am    
If you need your applications to share functionality, why don't you try implementing those as DLLs.

1 solution

please be more specific on question. still following may help


solution 1.
you may right click on solution

then ADD >> EXISTING PROJECT

solution 2.
Add projects in Blank solution.

solution3
if you have to run only application on button click of some form then simply add process to run desired application.
for that try

C#
System.Diagnostics.Process proc = new System.Diagnostics.Process(); // Declare New Process
                proc.StartInfo.FileName = application name;
 proc.Start();


read msdn >>
http://msdn.microsoft.com/en-us/library/system.diagnostics.process.aspx[^]
 
Share this answer
 

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