
Like to remove some Header text
I'd like to know how I can remove the text shown in this image.


9 posts

-Stu
!include MUI.nsh
OutFile "NoHeaderText.exe"
!insertmacro MUI_PAGE_WELCOME
!define MUI_PAGE_CUSTOMFUNCTION_SHOW DirectoryShow
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_LANGUAGE English
Function DirectoryShow
GetDlgItem $R0 $HWNDPARENT 1037
ShowWindow $R0 ${SW_HIDE}
GetDlgItem $R0 $HWNDPARENT 1038
ShowWindow $R0 ${SW_HIDE}
FunctionEnd
Section
SectionEnd