what's that function called again?

Started by
3 comments, last by doynax 19 years, 6 months ago
I remember coming across this function some time ago that let you open any .exe from within your own C++ app. Only I can't remember the name of it. Help me out someone? Thanks
"16 days?? that's almost two weeks!!" Tucker
Advertisement
The function is called ShellExecute (or a more modern version: ShellExecuteW). Check 'em out on MSDN to find out how they work and stuff.
Use _execl()!
There's a bunch. ShellExecute, CreateProcess, the exec* family, even system. They all have various pros and cons; investigate them all and determine which works best for you.
system()!
It's even in the ansi c standard.. =)

This topic is closed to new replies.

Advertisement