Change Title Bar
Hi,
I want to change the Title (not the Text on the Top) of my Installer depending of the selection of a Component. How can I do this?
Thanks for any Help
Archive: Change Title Bar
Change Title Bar
Hi,
I want to change the Title (not the Text on the Top) of my Installer depending of the selection of a Component. How can I do this?
Thanks for any Help
Hi mamilo!
!include WinMessages.nsh
:
:
Function .onSelChange
IntOp $1 $1 + 1
SendMessage $HWNDPARENT ${WM_SETTEXT} 0 "STR:MyTitle $1"
FunctionEnd