tags:

views:

61

answers:

2

Hi i need to call a external EXE (same running exe )from a C++ method i used

system("filepath");

but in the current file closed and new exe doesn't create the new instance

How can i call a exe with absolute path ?

+1  A: 

Look at this example that uses WinAPI CreateProcess

renick
+1  A: 

Have a look at ShellExecute, it should do the work.

Adrian Faciu