Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

Radio Button click event in Basic MSI


1 reply to this topic

thananjeyan

thananjeyan
  • Full Members
  • 1 posts

Posted 28 November 2014 - 15:00

Hi

 

I'm new to Installshield 12 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).

 

I have attached the screen shot. Please help me

 

Thanks,

Thananjeyan



Stefan Krueger

Stefan Krueger

    InstallSite.org

  • Administrators
  • 13,269 posts

Posted 04 December 2014 - 13:10

You can add a condition to the combo box. No DoAction is needed.

In Dialog Editor, go to the Behavior settings of your dialog. Select the combo box control in the list. At the bottom of the right window, click the Conditions tab. Add two rows in the table:

Action | Condition

Enable | RADIO_BUTTON=1

Disable | RADIO_BUTTON=0

or similar to match your requirements.