This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Link radio button selection to which dialog to display next
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
Oct 17, 2014
11:28 AM
Link radio button selection to which dialog to display next
I have Installshield 2014 - I want to have a new dialog that shows a radio button group, with radio buttons Yes and No (the text and value property is set accordingly for each button). I have this dialog created and inserted into the project, and it appears on the installer. The Radio Button Group property is set to INSTALLSERVER. When the user selects yes I want the next dialog to be displayed to be the SQLLogin. When No I want to display ReadyToInstall.
I have events set on the Next button
Event: NewDialog
Argument: ReadyToInstall
Condition: INSTALLSERVER=No
Event: NewDialog
Argument: SQLLogin
Condition: INSTALLSERVER=Yes
But nothing happens when I click the button. So it must not be setting the property properly.
Note that in the Property Manager I have set INSTALLSERVER=Yes and the Yes button is checked when I go to the dialog, indicating the property is working or visible.
How do I link which radio button the user selects to setting the property?
I have events set on the Next button
Event: NewDialog
Argument: ReadyToInstall
Condition: INSTALLSERVER=No
Event: NewDialog
Argument: SQLLogin
Condition: INSTALLSERVER=Yes
But nothing happens when I click the button. So it must not be setting the property properly.
Note that in the Property Manager I have set INSTALLSERVER=Yes and the Yes button is checked when I go to the dialog, indicating the property is working or visible.
How do I link which radio button the user selects to setting the property?
(1) Reply
Oct 17, 2014
11:56 AM
The solution is easy, quotes need to be around the text. ="No" or ="Yes"