zjyotiz
15th April 2010 21:36 UTC
Welcome Page
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
whourdady
15th April 2010 21:46 UTC
!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
MSG
16th April 2010 08:47 UTC
You can find this information, and a lot more related things, in the MUI readme:
http://nsis.sourceforge.net/Docs/Mod...UI/Readme.html
zjyotiz
16th April 2010 16:28 UTC
Welcome Page
whourdady' solutuion worked. Thanks lot. Also I will go through file:///C:/Program%20Files/NSIS/Docs/Modern%20UI%202/Readme.html link.