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
- :
- Radio Button Click event in Basic MSI
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Nov 28, 2014
09:41 AM
Radio Button Click event in Basic MSI
Hi
I'm new to Installshield and my project type is basic MSI.
I have include Radio button Group (PROPERTY as "RADIO_BUTTON") with two Radio buttons (Value 1 and 0) in a dialog.If i click the PostPone config radio button then i need to disable the certificate combo box. how can i do it?
I have tried DOAction for click event of RadioGroupButton. The click event occurs only when i click the RadioGroupButton Square Area (Event not trigger in Post Pone Config Radio Button).
Please help me
Thanks,
Thananjeyan
I'm new to Installshield and my project type is basic MSI.
I have include Radio button Group (PROPERTY as "RADIO_BUTTON") with two Radio buttons (Value 1 and 0) in a dialog.If i click the PostPone config radio button then i need to disable the certificate combo box. how can i do it?
I have tried DOAction for click event of RadioGroupButton. The click event occurs only when i click the RadioGroupButton Square Area (Event not trigger in Post Pone Config Radio Button).
Please help me
Thanks,
Thananjeyan
(1) Reply
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Dec 03, 2014
02:11 PM
You basically need to add the disable/enable conditions to your certificate combo box as below:
[LIST=1]
Action: Disable, Condition: RADIO_BUTTON = "PostPone"
Action: Enable, Condition: RADIO_BUTTON <> "PostPone"
[LIST=1]