how to start another application in my application
-
Please tell me... How to start another application in my application.. In my application I need to call another application to open. And I am not use the MFC. Can someone tell me how to open another application. Thanks..
-
Please tell me... How to start another application in my application.. In my application I need to call another application to open. And I am not use the MFC. Can someone tell me how to open another application. Thanks..
ShellExecute would do the trick!
ShellExecute(handle, "open","calc.exe", NULL, NULL,SW_SHOWNORMAL);
/Jarek As far as the laws of mathematics refer to reality, they are not certain; and as far as they are certain, they do not refer to reality. Albert Einstein
-
Please tell me... How to start another application in my application.. In my application I need to call another application to open. And I am not use the MFC. Can someone tell me how to open another application. Thanks..
Also check out
CreateProcess()
.
"The pointy end goes in the other man." - Antonio Banderas (Zorro, 1998)