1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
height:=10
weight:=10
italic:=0
strikeOut:=0
underline:=0
nCharSet:=0
Font2:="Arial"
RegRead, LogPixels, HKEY_LOCAL_MACHINE, SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontDPI, LogPixels
height := -DllCall("MulDiv", "int", Height, "int", LogPixels, "int", 72)
HFONT := DllCall("CreateFont", "int", height, "int", 0, "int", 0, "int", 0
,"int", weight, "Uint", italic, "Uint"
,underline,"uint"
,strikeOut, "Uint"
,nCharSet, "Uint", 0, "Uint", 0, "Uint", 0, "Uint", 0, "str"
,Font2, "Uint")
|