Didonet 0 Posted September 7, 2007 Can i create a gui window without the windows bar? ( the bar with the title and the [maximize][minimize][close] buttons) Share this post Link to post Share on other sites
Valuater 130 Posted September 7, 2007 Maybe... #include <GUIConstants.au3> GUICreate("My GUI", -1, -1, -1, -1, $WS_POPUP) GUISetState () ;Show GUI ; Waiting for user to close the window While 1 $msg = GUIGetMsg() If $msg = -3 then Exit Wend in this form, the GUI is un-moveable 8) Share this post Link to post Share on other sites
Didonet 0 Posted September 7, 2007 This is i want, thanks again! Share this post Link to post Share on other sites
Valuater 130 Posted September 7, 2007 This is i want, thanks again! Welcome8) Share this post Link to post Share on other sites