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: Change default Radio button default selection in Installshiled 2018
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
‎Jun 03, 2019
11:53 AM
Change default Radio button default selection in Installshiled 2018
Hi Team,
How can i change the Radio button default selcton on a MsiRMFilesInUse dialog?
can anyone please help or suggest the solution?/
Thank you!!
@Jenifer
(2) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 03, 2019
10:55 PM
Hi @Ravi_Raj_Nukala ,
From the installscript view, select the Dialog Source from the first drop down and SdRMFilesInUse in the second drop down in the script editor.
There you will get the SdRMFilesInUse procedure code, in order to change the default radio button selection you can modify the below code:
// Set the default radio button
if( bvCloseRestart ) then
CtrlSetState( szDlg, SD_PBUT_AUTO, BUTTON_CHECKED );
else
CtrlSetState( szDlg, SD_PBUT_NO_CLOSE, BUTTON_CHECKED );
endif;
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 05, 2019
05:28 AM
HI @banna_k Thank you for your reply. As i am beginner to Installshiled, Can you please help with the full script. which will help me in solving the problem. Thank you for your help!!
