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 / GUICtrlSetState.au3 < prev    next >
Text File  |  2004-12-04  |  495b  |  21 lines

  1. #include <GUIConstants.au3>
  2.  
  3. GUICreate("My GUI state")  ; will create a dialog box that when displayed is centered
  4.  
  5. GUICtrlCreateLabel ("my disable label", 10,20)
  6. GUICtrlSetState(-1,$GUI_DISABLE)    ; the label is in disable state
  7.                 
  8. GUICtrlCreateButton ("my button", 50,50)
  9. GUICtrlSetState(-1,$GUI_FOCUS)                ; the focus is on this button
  10.  
  11. GUISetState ()
  12.  
  13. ; Run the GUI until the dialog is closed
  14. While 1
  15.     $msg = GUIGetMsg()
  16.     
  17.     If $msg = $GUI_EVENT_CLOSE Then ExitLoop
  18. Wend
  19.  
  20.  
  21.