I am having difficulties in just running a program from within my program. I have a couple of books but the best I can find is to use the system function
Printable View
I am having difficulties in just running a program from within my program. I have a couple of books but the best I can find is to use the system function
Hi,
You can try adding this line to your code:
system("start Iexplore.exe");
but ensure that Iexplore is in your current path
Chao
Use the ShellExecute or ShellExecuteEx Win32 API functions as documented in the VC++ online help.
Dave