Quote:
Originally Posted by Gehrman

what is the problem?
|
Code:
1. Goto line 546, (Ctrl + G then 546)
2.
Change
LabelTime3 := TLabel.Create(WizardForm);
with LabelTime3 do begin
...
Left := 180;
Top := 200;
end;
To
LabelTime3 := TLabel.Create(WizardForm);
with LabelTime3 do begin
...
Left := WizardForm.FinishedLabel.Left;
Top := WizardForm.FinishedLabel.Top + ScaleY(120);
end;