Borderless window option available?

BlitzMax Forums/MaxGUI Module/Borderless window option available?

QuickSilva(Posted 2008) [#1]
Is there a way to achieve a fullscreen, borderless MaxGUI window? I cannot find it mentioned in the docs but I`m hoping that I may have missed it. Hopefully you can.

Thank you for any help,

Jason.


jsp(Posted 2008) [#2]
Try this
Local Window1:TGadget = CreateWindow:TGadget("Window1",338,181,196,157,Null,Null)
	MaximizeWindow( Window1:TGadget )


Example which contains a fullscreen borderless window:
http://jsp.logiczone.de/downloads/SwitchParent.zip


QuickSilva(Posted 2008) [#3]
Cheers, thank a lot!

Jason.