Hey guys...
I'm running a exe file using the system command
When I use this command an annoying console window pops. Anyone knows how I can hide this window? thanks.Code:system("HINSTALL.EXE -i");
This is a discussion on Hiding The Console... within the C++ Programming forums, part of the General Programming Boards category; Hey guys... I'm running a exe file using the system command Code: system("HINSTALL.EXE -i"); When I use this command an ...
Hey guys...
I'm running a exe file using the system command
When I use this command an annoying console window pops. Anyone knows how I can hide this window? thanks.Code:system("HINSTALL.EXE -i");
Use the better methods of running another process, as outlined in the FAQ.
If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
If at first you don't succeed, try writing your phone number on the exam paper.
I support http://www.ukip.org/ as the first necessary step to a free Europe.
For sure, they don't call it the FAQ for nothin. Use CreateProcess().