cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
rdejournett
Level 2

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?
Labels (1)
0 Kudos
(1) Reply
rdejournett
Level 2

The solution is easy, quotes need to be around the text. ="No" or ="Yes"
0 Kudos