sumit Posted July 13, 2007 Posted July 13, 2007 can someone please tell me if there a GUI close command. ( Not talking about GUICloseOnESC )
spac3m0nk3y Posted July 13, 2007 Posted July 13, 2007 GUIDelete() maybe? #include <GUIConstants.au3> GUICreate("My GUI") ; will create a dialog box that when displayed is centered GUISetState () ; will display an empty dialog box ; Run the GUI until the dialog is closed While 1 $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then ExitLoop Wend GUIDelete(); ; will return 1 Website: http://www.mayniac.org
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