Can I add another application to my solution?

  • Thread starter Thread starter VMI
  • Start date Start date
V

VMI

I want to add an entirely indepedent application that will be called as an
Exe from my current solution
with System.Diagnostics.Process.Start("newProgram.exe") . This new
application will be a simple Form with a button, but it has to be able to
run after my main application closes. Do I need to close my current Solution
and create a new solution, or can I simply add the Form to my current
project (with all the Forms) and somehow compile it so it generates an EXE
file that I can call separately?

Thanks.
 
Nope, just right click on the solution and select Add>New Project then select Windows Application from the standard new project dialog

Regards

Richard Blewett - DevelopMentor
http://www.dotnetconsult.co.uk/weblog
http://www.dotnetconsult.co.uk

I want to add an entirely indepedent application that will be called as an
Exe from my current solution
with System.Diagnostics.Process.Start("newProgram.exe") . This new
application will be a simple Form with a button, but it has to be able to
run after my main application closes. Do I need to close my current Solution
and create a new solution, or can I simply add the Form to my current
project (with all the Forms) and somehow compile it so it generates an EXE
file that I can call separately?

Thanks.
 
Back
Top