Change Uninstall Log Window Font

From NSIS Wiki

Author: Afrow UK (talk, contrib)


[edit] Description

This changes the font of the text in the uninstaller LogWindow.

[edit] Usage

!include WinMessages.nsh
Section "Uninstall"
Call un.LogFont
 
### other uninstall stuff here ###
SectionEnd

[edit] The Function

Function un.LogFont
Push $R0
Push $R1
 
  FindWindow $R0 "#32770" "" $HWNDPARENT
  GetDlgItem $R0 $R0 1016
  CreateFont $R1 "Comic Sans Ms" "8" "700"
  SendMessage $R0 ${WM_SETFONT} $R1 0
 
Pop $R1
Pop $R0
FunctionEnd

Thanx Joel for writing this code.

-Stu

donate
ads