RadioButtons - how to read which is selected
I have two RadioButtons, how I can detect on which button the user is clicked? I have this:
Function ChooseAllUsersPage
StrCmp $ALL_USERS "false" skip_all_users
!insertmacro MUI_HEADER_TEXT "$(ChooseAllUsersPage_TITLE)" "$(ChooseAllUsersPage_SUBTITLE)"
!insertmacro MUI_INSTALLOPTIONS_DISPLAY "ChooseAllUsersPage"
skip_all_users:
FunctionEnd
This function I call it like this:
Page custom ChooseAllUsersPage in the section list order.
I made the page in NM NIS Edit.
Thank you