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 / GUICtrlSetFont.au3 < prev    next >
Text File  |  2004-09-28  |  679b  |  23 lines

  1. #include <GUIConstants.au3>
  2.  
  3. GUICreate ("My GUI")  ; will create a dialog box that when displayed is centered
  4.  
  5. $font="Comic Sans MS"
  6. GUICtrlCreateLabel ("underlined label",10,20)
  7. GUICtrlSetFont (-1,9, 400, 4, $font)    ; will display underlined characters
  8.  
  9. GUICtrlCreateLabel ("italic label", 10,40)
  10. GUICtrlSetFont (-1,9, 400, 2, $font)    ; will display underlined characters
  11.  
  12. GUISetFont (9, 400, 8, $font)    ; will display underlined characters
  13. GUICtrlCreateLabel ("strike label",10,60)
  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.