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 / GUICtrlCreateUpdown.au3 < prev    next >
Text File  |  2005-01-07  |  456b  |  23 lines

  1. #include "GUIConstants.au3"
  2.  
  3. $title = "My GUI UpDown"
  4. GUICreate($title,-1,-1,-1,-1, $WS_SIZEBOX)
  5.  
  6. $input = GUICtrlCreateInput ("2",10,10, 50, 20)
  7. $updown = GUICtrlCreateUpdown($input)
  8.  
  9. ; Attempt to resize input control
  10. GUICtrlSetPos($input, 10,10, 100, 40 )
  11.  
  12. GUISetState ()
  13.  
  14. ; Run the GUI until the dialog is closed
  15. While 1
  16.     $msg = GUIGetMsg()
  17.     
  18.     If $msg = $GUI_EVENT_CLOSE Then ExitLoop
  19. Wend
  20.  
  21. msgbox(0,"Updown",GUICtrlRead($input))
  22.  
  23.