Force window on top

BlitzMax Forums/MaxGUI Module/Force window on top

Hezkore(Posted 2011) [#1]
Is there any way to force a window on top?


Volker(Posted 2011) [#2]
http://blitzbasic.com/Community/posts.php?topic=91701#1043645


jsp(Posted 2011) [#3]
Or maybe just on top of your own app?
A window can stay on top of another window (main window), when you declare the main window as parent.

If you have several windows and you want to move that one on top of all others you can use:
ShowGadget(Window)
and it will pop in front of all others.


Hezkore(Posted 2011) [#4]
Thanks for both responses guys! :D
Everything has been solved. ;)