Change installer font at runtime[B][/B]
Hi all,
I need to change the installer font at runtime. I tried SetFont but this command changes the font when the installer is compiled. Also I tried the code below but didn't work.
FindWindow $R4 "#32770" "" $HWNDPARENT
GetDlgItem $0 $HWNDPARENT 1
CreateFont $1 "Times New Roman" "10" "700"
SendMessage $0 ${WM_SETFONT} $1 1
I need something like SetFont but for the runtime. Please help me...