This must be simple, but I guess I'm searching with the wrong key words.
I have a visual studio solution(2008) that includes two projects (win32). is it possible for one to launch another? they are entirely self sufficient programs.
This must be simple, but I guess I'm searching with the wrong key words.
I have a visual studio solution(2008) that includes two projects (win32). is it possible for one to launch another? they are entirely self sufficient programs.
If you want one project binaray executing the other, yes, this is possible.
If you want Project1 to be executed before or after the compilation of Project 2:
Right click on Project. Select Properties. Expand Build Events, select Pre-Build Events. In Command Line put the path to your executable. Use the macro's for this.
If you need one to start before the other then set it to be a dependent of the other. Right click the Solution, select Project Dependencies and choose which project it is dependent on.
For independent projects that may need to talk to each other (classic Client/Server) you could use Multiple Startup Projects: http://blogs.msdn.com/b/zainnab/archive/2010/05/10/multiple-startup-projects-vstipenv0015.aspx