Valhalla Legends Archive

Programming => General Programming => C/C++ Programming => Topic started by: Mephisto on September 27, 2004, 11:09 PM

Title: Hiding a Console Application
Post by: Mephisto on September 27, 2004, 11:09 PM
Can you do this?  Basically just have the console hide itself, but still run.
Title: Re: Hiding a Console Application
Post by: Eibro on September 28, 2004, 12:04 AM
Get a handle to the console window and call ShowWindow on it with the appropriate parameters?

Build your application with a windows subsystem and use AllocConsole and FreeConsole instead.