Jun 19, 2008 #1 truitt20 Technical User Dec 10, 2004 74 US is it possible to create a executable file to open various programs all at once? thanks
Jun 19, 2008 #2 ArkM IS-IT--Management Oct 21, 2002 1,819 RU CreateProcess() function: http://msdn.microsoft.com/en-us/library/ms682425(VS.85).aspxDon't copy the question in all threads... Upvote 0 Downvote
CreateProcess() function: http://msdn.microsoft.com/en-us/library/ms682425(VS.85).aspxDon't copy the question in all threads...
Jun 22, 2008 #3 Miros Programmer Jan 27, 2001 506 US Or you can use the Shell command to open the executable (or a data file whose extention is associated with that executable). Upvote 0 Downvote
Or you can use the Shell command to open the executable (or a data file whose extention is associated with that executable).
Jun 22, 2008 #4 cpjust Programmer Sep 23, 2003 2,132 US Or system() if you want to use a Standard C/C++ function. popen() would also work, along with many other functions such as some of these: http://msdn.microsoft.com/en-us/library/d6dtz42k(VS.71).aspx Upvote 0 Downvote
Or system() if you want to use a Standard C/C++ function. popen() would also work, along with many other functions such as some of these: http://msdn.microsoft.com/en-us/library/d6dtz42k(VS.71).aspx