Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Inno Script - How to make "I Accept the Agreement" radio button on EULA page selected by Default

Tags:

inno-setup

In Inno Setup I have and End-user license agreement page which has "I accept the agreement" and "I don't accept the agreement."

How can I make the "I accept" radio button selected by default?

like image 482
Gad D Lord Avatar asked Jun 25 '12 09:06

Gad D Lord


1 Answers

You can check the LicenseAcceptedRadio control from script code:

[Code]
procedure InitializeWizard;
begin
  WizardForm.LicenseAcceptedRadio.Checked := True;
end;
like image 69
TLama Avatar answered Nov 05 '22 09:11

TLama