I have created a custom page using nsDialogs and want to add header to it.
Below is the code
!include nsDialogs.nsh
!include LogicLib.nsh
!include "MUI.nsh"
Name nsDialogs
OutFile Pageheader.exe
Page custom nsDialogsPage
Page instfiles
Function nsDialogsPage
!insertmacro MUI_HEADER_TEXT "YourTitle" "YourSubtitle"
nsDialogs::Create 1018
Pop $0
${If} $0 == error
Abort
${EndIf}
nsDialogs::Show
FunctionEnd
Section
DetailPrint "hello world"
SectionEnd I need a help.