home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / autoit-v3-setup.exe / Examples / GUICtrlSetData.au3 < prev    next >
Text File  |  2004-09-28  |  419b  |  18 lines

  1. #include <GUIConstants.au3>
  2.  
  3. GUICreate("My GUI")  ; will create a dialog box that when displayed is centered
  4.  
  5. GUICtrlCreateCombo ("", 10,10)
  6.  
  7. GUICtrlSetData(-1,"item1|item2|item3", "item3")
  8.  
  9. GUISetState ()       ; will display an empty dialog box with a combo control with focus on
  10.  
  11. ; Run the GUI until the dialog is closed
  12. While 1
  13.     $msg = GUIGetMsg()
  14.     
  15.     If $msg = $GUI_EVENT_CLOSE Then ExitLoop
  16. Wend
  17.  
  18.