I'm trying to run a command from a window project using system() call but everytime the console shows up. how can i run the command without displaying a console window?
+2
A:
Use the CreateProcess
function, and pass the flag CREATE_NO_WINDOW
.
Philipp
2010-09-22 21:22:56