Reputation: 543
I have 3 console programs (.exe), and I want to run them from one console application without showing the windows of the 3 console programs. All programs are written in VC++. Any suggestions about how I can do this?
Upvotes: 3
Views: 2130
Reputation: 1643
Take a look at the ShellExecute Function http://msdn.microsoft.com/en-us/library/windows/desktop/bb762153(v=vs.85).aspx
SW_HIDE as last parameter will ... well, hide the window.
Upvotes: 2