hidden maxgui window?

BlitzMax Forums/BlitzMax Beginners Area/hidden maxgui window?

xlsior(Posted 2007) [#1]
Can anyone give me some pointers in how to hide/unhide a Maxgui window?


tonyg(Posted 2007) [#2]
Hidegadget(mywindow) and showgadget(mywindow)?


SebHoll(Posted 2007) [#3]
If you want the window to be created hidden until you explicitly call ShowGadget() then create it using the WINDOW_HIDDEN flag (see the MaxGUI CreateWindow docs).


xlsior(Posted 2007) [#4]
Thanks, that did the trick.

(The MaxGUI docs could really use some improvement and samples...)