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 / GUICtrlCreateButton.au3 < prev    next >
Text File  |  2005-01-03  |  428b  |  21 lines

  1. #include <GUIConstants.au3>
  2.  
  3. GUICreate("My GUI Button")  ; will create a dialog box that when displayed is centered
  4.  
  5. Opt("GUICoordMode",2)
  6. GUICtrlCreateButton ("OK",  10, 30, 50)
  7. GUICtrlCreateButton ( "Cancel",  0, -1)
  8.  
  9. GUISetState ()       ; will display an  dialog box with 2 button
  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.  
  19.  
  20.  
  21.