RosettaCodeData/Task/Window-creation/AutoIt/window-creation.autoit
2023-07-01 13:44:08 -04:00

9 lines
124 B
Text

GUICreate("Test")
GUISetState(@SW_SHOW)
Do
Switch GUIGetMsg()
Case -3 ; $GUI_EVENT_CLOSE
Exit
EndSwitch
Until False