View Single Post
  #4  
Old 09-02-2015, 06:37
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,754
Thanks: 2,191
Thanked 11,223 Times in 2,312 Posts
Razor12911 is on a distinguished road
on a normal script, this is what you do.

[Code]
procedure CurPageChanged(CurPageID: Integer);
begin
case CurPageID of
wpWelcome:
begin
WizardForm.CancelButton.Enabled:=False; // to disable;
WizardForm.CancelButton.Visible:=False; // to hide;
WizardForm.BackButton.Enabled:=False; // to disable;
WizardForm.BackButton.Visible:=False; // to hide;
end;
end;
end;
Reply With Quote
The Following User Says Thank You to Razor12911 For This Useful Post:
pakrat2k2 (09-02-2015)