Quote:
Originally Posted by Smurf Stomper
EDIT: I messed with my original script I had pasted - turns out if I change this
Code:
procedure CurPageChanged(CurPageID: Integer);
var
FinishedLbl2: TLabel;
begin
if (CurPageID = wpFinished) then FinishedLbl2.Caption:= WizardForm.FinishedLabel.Caption;
end;
to this:
Code:
procedure CurPageChanged(CurPageID: Integer);
var
FinishedLbl2: TLabel;
begin
FinishedLbl2.Caption:= WizardForm.FinishedLabel.Caption;
end;
mine works just fine. ::sigh::
|
i think it wont works..try it..i just tried it and it didn't works