code to run sample.exe program?
-
Hi! I am trying to run an .exe file in my C++ code. Let me say, I have do.exe program. And another control_do.exe program that can run do.exe conditionally. Any code suggestion that is generic, not VC++? I am using Visual Studio 2005, but code is standard c++, but VC++. Thanks! Yonggoo
-
Hi! I am trying to run an .exe file in my C++ code. Let me say, I have do.exe program. And another control_do.exe program that can run do.exe conditionally. Any code suggestion that is generic, not VC++? I am using Visual Studio 2005, but code is standard c++, but VC++. Thanks! Yonggoo
See the FAQ 6.4 How do I run another program from my program?[^] --Mike-- Visual C++ MVP :cool: LINKS~! Ericahist | NEW!! PimpFish | CP SearchBar v3.0 | C++ Forum FAQ
-
Hi! I am trying to run an .exe file in my C++ code. Let me say, I have do.exe program. And another control_do.exe program that can run do.exe conditionally. Any code suggestion that is generic, not VC++? I am using Visual Studio 2005, but code is standard c++, but VC++. Thanks! Yonggoo
-
Hi! I am trying to run an .exe file in my C++ code. Let me say, I have do.exe program. And another control_do.exe program that can run do.exe conditionally. Any code suggestion that is generic, not VC++? I am using Visual Studio 2005, but code is standard c++, but VC++. Thanks! Yonggoo
Use shell Execute for example this line below opens a browser connecting to the appropriate link passed to it where xyz is the name of the site ShellExecute(NULL, NULL,"http://xyz.com", NULL, NULL,SW_NORMAL ); Vision is Always important and so is your ATTITUDE. Wishes. Anshuman Dandekar