Inno Script - How to make the "I accept the agreement" switch on the default EULA page

In Inno Setup, I have an end-user license agreement that says "I agree with the agreement" and "I do not agree with the agreement."

How can I set the "I accept" switch by default?

+6
source share
1 answer

You can check the LicenseAcceptedRadio control from the script code:

 [Code] procedure InitializeWizard; begin WizardForm.LicenseAcceptedRadio.Checked := True; end; 
+12
source

Source: https://habr.com/ru/post/918929/


All Articles