home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Welt 2005 November
/
PCWELT_11_2005.ISO
/
pcwsoft
/
autoit-v3-setup.exe
/
Examples
/
GUISetState.au3
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2005-01-07
|
285 b
|
14 lines
#include <GUIConstants.au3>
GUICreate ("My GUI") ; start the definition
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