home *** CD-ROM | disk | FTP | other *** search
- #include <Misc.au3>
-
- Local $a_font
-
- $a_font = _ChooseFont ("Arial",8)
- If (@error) Then
- MsgBox(0, "", "Error _ChooseFont: " & @error)
- Else
- MsgBox(0, "", "Font Name: " & $a_font[2] & @LF & "Size: " & $a_font[3] & @LF & "Weight: " & $a_font[4] & @LF & "COLORREF rgbColors: " & $a_font[5] & @LF & "Hex BGR Color: " & $a_font[6] & @LF & "Hex RGB Color: " & $a_font[7])
- EndIf
-
- $a_font = _ChooseFont ()
- If (@error) Then
- MsgBox(0, "", "Error _ChooseFont: " & @error)
- Else
- MsgBox(0, "", "Font Name: " & $a_font[2] & @LF & "Size: " & $a_font[3] & @LF & "Weight: " & $a_font[4] & @LF & "COLORREF rgbColors: " & $a_font[5] & @LF & "Hex BGR Color: " & $a_font[6] & @LF & "Hex RGB Color: " & $a_font[7])
- EndIf
-