View Single Post
  #558  
Old 01-06-2013, 14:01
y_thelastknight's Avatar
y_thelastknight y_thelastknight is offline
Registered User
 
Join Date: Mar 2010
Location: Canada
Posts: 437
Thanks: 616
Thanked 576 Times in 213 Posts
y_thelastknight is on a distinguished road
Quote:
Originally Posted by Smurf Stomper View Post
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
Reply With Quote