Skip to content
⌘ NSIS Forum Archive

Enable Next button

3 posts

sprinleo#

Enable Next button

Hi All,

i am new to Nullsoft and i am trying the following code:

Page custom InstallTypePageCreate InstallTypePageLeave
!define MUI_LICENSEPAGE_RADIOBUTTONS
!define MUI_LICENSEPAGE_RADIOBUTTONS_TEXT_ACCEPT "I Agree to the license agreement."
!define MUI_LICENSEPAGE_RADIOBUTTONS_TEXT_DECLINE "I do not Agree to the license agreement."
!insertmacro MUI_PAGE_LICENSE "$(license_txt)"

The problem with above code is that the Next button is disabled unless the "I Agree ..." option is selected. I wish this button to be enabled even when the "I do not ..." option is selected.

Is there a way..? any help on this would highly appreciated.

many thanks
Manohar
kichik#
The whole point of the checkbox is exactly that. If you want the button to always be enabled, don't use the checkbox.
sprinleo#
Radio Button not checkbox

Hi,

just to take your attention towards the control ie. radio buttons not checkbox, where-in any single option could be selected at any given point in time. Based on this selection, appropriate page will displayed next.

many thanks
Manohar