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 / setlabel.au3 < prev    next >
Text File  |  2005-01-19  |  1KB  |  36 lines

  1. ; AutoIt Version 3.0.103
  2. ; Language:       English
  3. ; Author:         Larry Bailey
  4. ; Email:          psichosis@tvn.net
  5. ; Date: January 11, 2005
  6. ;
  7. ; Script Function
  8. ; Creates a simple GUI showing the use of
  9. ; a label, a combobox and a button
  10. ; Selecting an item from the combobox
  11. ; and clicking the button updates the label text
  12.  
  13. #include <GuiConstants.au3>
  14.  
  15. ; Create the GUI window and controls
  16. GuiCreate("MyGUI", 191, 157,(@DesktopWidth-191)/2, (@DesktopHeight-157)/2)
  17. $Label_1 = GuiCtrlCreateLabel("Label1", 30, 40, 131, 21, 0x1000)
  18. $Combo_2 = GuiCtrlCreateCombo("", 30, 60, 130, 21)
  19. GuiCtrlSetData($combo_2, "Item1|Item2|Item3|Item4|Item5")
  20. $button1 = GuiCtrlCreateButton("Set Label", 30, 90, 130, 20)
  21.  
  22. ; Run the GUI until it is closed
  23. GuiSetState()
  24. While 1
  25.     $msg = GuiGetMsg()
  26.     Select
  27.     Case $msg = $GUI_EVENT_CLOSE
  28.         ExitLoop
  29.     ;When button is pressed, label text is changed
  30.     ;to combobox value
  31.     Case $msg = $button1
  32.       $data = GUICtrlRead($Combo_2)
  33.       GuiCtrlSetData($Label_1, $data)
  34.     EndSelect
  35. WEnd
  36. Exit