[Solved] Maximize frameless on MaxGUI

BlitzMax Forums/BlitzMax Programming/[Solved] Maximize frameless on MaxGUI

RustyKristi(Posted 2016) [#1]
Hi,

Can someone point some examples or links using frameless and maximize mode?

I'd like to use both at the same time. thanks


markcw(Posted 2016) [#2]
For MaxGUI you just change the style param in CreateWindow.
Borderless window option available?

For default console window you need to hack the sources as done here.
Borderless graphics modes

There's also a Win32-only window using user32.dll here.
Full-screen borderless window (Win32)


Chapman7(Posted 2016) [#3]
This is from my project, some of the variables are things you won't need but here is the gist:




RustyKristi(Posted 2016) [#4]
Thanks guys! I already tried your last link munch and it works great! :D

Somehow I may have to check them all out so I can customized by own routine here but those are good stuff!