home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PCNET 2006 September - Disc 1
/
PCNET_CD_2006_09.iso
/
shareware
/
autoit-v3-setup.exe
/
Examples
/
Helpfile
/
_GUICtrlComboGetList.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
|
2006-06-17
|
330 b
|
16 lines
#include <GUIConstants.au3>
#include <GUICombo.au3>
GUICreate("My GUI combo")
Global $g_idCombo = GUICtrlCreateCombo ("", 10, 10, 100, 120)
GUICtrlSetData($g_idCombo, "item1|item1")
GUISetState ()
While 1
If GUIGetMsg() = $GUI_EVENT_CLOSE Then ExitLoop
Wend
MsgBox(4096, "", _GUICtrlComboGetList($g_idCombo))