xXx Posted September 10, 2006 Posted September 10, 2006 (edited) Is it possible to make a GUI like that:?I did this with Koda but when i run it it has the close button anywayEDIT: oh posted it on wrong section i think... please move to the GUI section Edited September 10, 2006 by xXx
GaryFrost Posted September 10, 2006 Posted September 10, 2006 #include <GUIConstants.au3> GUICreate("My GUI",-1,-1,-1,-1,BitOR($WS_CAPTION, $WS_POPUP)) GUISetState (@SW_SHOW) While 1 $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then ExitLoop Wend SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
xXx Posted September 10, 2006 Author Posted September 10, 2006 #include <GUIConstants.au3> GUICreate("My GUI",-1,-1,-1,-1,BitOR($WS_CAPTION, $WS_POPUP)) GUISetState (@SW_SHOW) While 1 $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then ExitLoop Wendthx for the help but the screen shows a toolwindow (meaning: $WS_EX_TOOLWINDOW)
GaryFrost Posted September 10, 2006 Posted September 10, 2006 thx for the help but the screen shows a toolwindow (meaning: $WS_EX_TOOLWINDOW)play around with the styles till you get it the way you want. SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
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