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 / GUICtrlCreateLabel.au3 < prev    next >
Text File  |  2004-09-28  |  628b  |  22 lines

  1. #include <GUIConstants.au3>
  2.  
  3. GUICreate("My GUI")  ; will create a dialog box that when displayed is centered
  4.  
  5. GUISetHelp("notepad")  ; will run notepad if F1 is typed
  6. Opt("GUICoordMode",2)
  7. GUICtrlCreateLabel ("Done",  10, 30, 50)    ; first cell 50 width
  8. GUICtrlCreateLabel ("Done 2",  -1, 0)    ; next line
  9. GUICtrlCreateLabel ("Done 3",   0, 0)    ; next line and next cell 
  10. GUICtrlCreateLabel ("Done 4",   0, -1)    ; next cell same line 
  11.  
  12. GUISetState ()       ; will display an empty dialog box
  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.  
  22.