Click to See Complete Forum and Search --> : Running an .exe


April 18th, 1999, 04:26 PM
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

Chao
April 19th, 1999, 05:03 AM
Hi,

You can try adding this line to your code:
system("start Iexplore.exe");

but ensure that Iexplore is in your current path

Chao

Dave Lorde
April 19th, 1999, 05:13 AM
Use the ShellExecute or ShellExecuteEx Win32 API functions as documented in the VC++ online help.

Dave