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 / GUISetCoord.au3 < prev    next >
Text File  |  2005-01-07  |  567b  |  24 lines

  1. #include <GUIConstants.au3>
  2.  
  3. Opt ("GUICoordMode", 2)    ; relative to cell mode
  4.  
  5. GUICreate ("My GUI Set Coord", 200, 100)
  6. GUICtrlCreateCheckbox ("Check #1", 20, 10, 75)
  7. GUICtrlCreateCheckbox ("Notify #2", 10, -1)    ; next cell in the line
  8.  
  9. GUISetCoord(20,60)
  10.  
  11. GUICtrlCreateButton ("OK #3", -1,-1)
  12. GUICtrlCreateButton ("Cancel #4", 10, -1)
  13. GUICtrlSetState( -1, $GUI_FOCUS)
  14.  
  15. GUISetState ()       ; will display an empty dialog box
  16.  
  17. ; Run the GUI until the dialog is closed
  18. While 1
  19.     $msg = GUIGetMsg()
  20.     
  21.     If $msg = $GUI_EVENT_CLOSE Then ExitLoop
  22. Wend
  23.  
  24.