Multiple MUI_PAGE_COMPONENTS dialogs
Hi.
I’m on my way to create my first NSIS installer.
I have successfully created a radio button page for the user to select one of two alternatives (using the MUI_PAGE_COMPONENTS page, and doing the following in the .onSelChange function (not complete code)
!insertmacro MUI_PAGE_COMPONENTS
Function .onSelChange
!insertmacro StartRadioButtons $1
!insertmacro RadioButton ${section_form}
!insertmacro RadioButton ${section_basic}
!insertmacro EndRadioButtons
FunctionEnd
Now I need a second, similar page but for another variable and other alternatives.
How can I create a second MUI_PAGE_COMPONENTS page that will present other Radio buttons in the .onSelChange function? Is that possible?
Can anyone point me to some sample code that solves my problem.
Thanks!