Change Uninstall Log Window Font: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (Updated author links.)
m (Adding new author and category links.)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{|align=right
{{PageAuthor|Afrow UK}}
|<small>Author: [[{{ns:2}}:Afrow UK|Afrow UK]] ([[{{ns:3}}:Afrow UK|talk]], [[{{ns:-1}}:Contributions/Afrow UK|contrib]])</small>
 
|}
<br style="clear:both;">
== Description ==
== Description ==
This changes the font of the text in the uninstaller LogWindow.
This changes the font of the text in the uninstaller LogWindow.
Line 35: Line 33:


-Stu
-Stu
[[Category:User Interface Functions]]

Latest revision as of 11:54, 24 June 2005

Author: Afrow UK (talk, contrib)


Description

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

Usage

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

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