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 / GUISetFont.au3 < prev    next >
Text File  |  2004-09-28  |  639b  |  24 lines

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