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
- :
- Re: Default Radio Button Selection
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
‎Oct 09, 2011
01:44 AM
Default Radio Button Selection
Hi,
I have one dialogbox which contains 2 radio buttons.
When that dialog appears while installation, I wanted to make default selection of any of the radio button.But I am not able to find the way to do it.
My Project type is Installscript Project.
Please share your thoughts on this.
I have one dialogbox which contains 2 radio buttons.
When that dialog appears while installation, I wanted to make default selection of any of the radio button.But I am not able to find the way to do it.
My Project type is Installscript Project.
Please share your thoughts on this.
(4) Replies
Not applicable
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 09, 2011
03:22 AM
You can use CtrlSetState function, for example:
CtrlSetState(szDlg, RADIO_BUTTON_ID, BUTTON_CHECKED);
CtrlSetState(szDlg, RADIO_BUTTON_ID, BUTTON_CHECKED);
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 09, 2011
07:18 AM
Thanks Kevin for your reply.
It worked.
It worked.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 19, 2019
12:56 AM
How did you make it work i am in same condition. do we need to implement any script??
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 22, 2019
05:30 AM
Hi Ravi_Raj_Nukala,
Yes,you have to add installscript function and execute it as custom action.
Refer the below link for example:
Thanks,
Jenifer