Invisible Console Window
-
Hi. I am writing a console app that needs to be invisible. What is the easiest way to make sure that the Console window doesn't flash on the screen? Cheers Dave Kerr codechamber@hotmail.com http://www.codechamber.com
-
Hi. I am writing a console app that needs to be invisible. What is the easiest way to make sure that the Console window doesn't flash on the screen? Cheers Dave Kerr codechamber@hotmail.com http://www.codechamber.com
The easiest way to do this is to change your main function to WinMain. And change the SubSystem in the Linker/System panel from Console to Windows. Recompile and you are done. AliR. Visual C++ MVP
-
The easiest way to do this is to change your main function to WinMain. And change the SubSystem in the Linker/System panel from Console to Windows. Recompile and you are done. AliR. Visual C++ MVP
Hi Ali, Thanks very much- that worked perfectly. Cheers Dave Kerr codechamber@hotmail.com http://www.codechamber.com