Fixed a font problem in the Licenses Accepted
Code:
..................
LicenseCheckLabel.Lbl := TLabel.Create(WizardForm);
LicenseCheckLabel.Shd := TLabel.Create(WizardForm);
with LicenseCheckLabel.Lbl do begin
Parent := WizardForm;
Autosize := False;
Caption := Wizardform.LicenseAcceptedRadio.Caption;
.............
Edit
....................
LicenseCheckLabel.Lbl := TLabel.Create(WizardForm);
LicenseCheckLabel.Shd := TLabel.Create(WizardForm);
with LicenseCheckLabel.Lbl do begin
Parent := WizardForm;
Autosize := True;
Caption := Wizardform.LicenseAcceptedRadio.Caption;
.....................