RosettaCodeData/Task/Window-creation/AutoIt/window-creation.au3

10 lines
124 B
AutoIt
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
GUICreate("Test")
GUISetState(@SW_SHOW)
Do
Switch GUIGetMsg()
Case -3 ; $GUI_EVENT_CLOSE
Exit
EndSwitch
Until False