[Solved] How to Remove Console Window

BlitzMax Forums/MiniB3D Module/[Solved] How to Remove Console Window

RustyKristi(Posted 2016) [#1]
There seems to be a hack with Blitz3D so I'm guessing this will be fairly easy for BMX since you can have more control, but I can't find and direct documentation and it looks kinda weird.

Thanks


grable(Posted 2016) [#2]
For BlitzMax, compile it in GUI mode.

If the console is still created in GUI mode (by some third party lib or something), you can call FreeConsole on Windows.
Extern "Win32"
  Function FreeConsole()
EndExtern



RustyKristi(Posted 2016) [#3]
Ah ok. I totally forgot about that! Thanks grable, GUI mode works great. should've known XD