I Am very new NSIS, I have existing Instalable (EXE) created by NSIS,
which have some welcome message, now I want to change welcome message. How can I change it
This window have "Next" and "Cancel" button.
I have following code
# Installer pages
#Welcom Page
!insertmacro MUI_PAGE_WELCOME
# License page
!insertmacro MUI_PAGE_LICENSE "resources\EULA.rtf"
Thanks
Jyoti
Welcome Page
4 posts
!define MUI_WELCOMEPAGE_TITLE "Run SQL Install"
!define MUI_WELCOMEPAGE_TEXT "Click next to run the SQL installation"
!insertmacro MUI_PAGE_WELCOME
should be something like that for the Welcome Message
!define MUI_WELCOMEPAGE_TEXT "Click next to run the SQL installation"
!insertmacro MUI_PAGE_WELCOME
should be something like that for the Welcome Message
You can find this information, and a lot more related things, in the MUI readme:
Welcome Page
whourdady' solutuion worked. Thanks lot. Also I will go through file:///C:/Program%20Files/NSIS/Docs/Modern%20UI%202/Readme.html link.
whourdady' solutuion worked. Thanks lot. Also I will go through file:///C:/Program%20Files/NSIS/Docs/Modern%20UI%202/Readme.html link.