cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Ravi_Raj_Nukala
Level 3

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
Labels (1)
0 Kudos
(2) Replies
banna_k
Revenera
Revenera

 

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;

 

0 Kudos

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!!
0 Kudos