chuck Posted April 1, 2009 Posted April 1, 2009 I m writing a GUI and when I run it I want to take my current resolution and maximize the gui to the whole Desktop without having the classic window 3 buttons in the upper right side (min , max , close)in other words I want to this gui to replace my Desktop . I hope i gave you enough info to help me Any Help Appreciated Thanks in Advance Chuck
Authenticity Posted April 1, 2009 Posted April 1, 2009 #include <WindowsConstants.au3> HotKeySet('{ESC}', '_EXIT') Dim $hGUI = GUICreate('', @DesktopWidth, @DesktopHeight, 0, 0, $WS_POPUP, $WS_EX_TOOLWINDOW) GUISetState() While 1 Sleep(50) WEnd Func _EXIT() GUIDelete() Exit EndFunc
chuck Posted April 1, 2009 Author Posted April 1, 2009 Thanks A Lot it was quiet easy but it seems I didnt search well enough the Guicreate options Chuck
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now