View Single Post
  #659  
Old 16-04-2018, 13:43
bunti_o4u's Avatar
bunti_o4u bunti_o4u is offline
Registered User
 
Join Date: Aug 2017
Location: India
Posts: 162
Thanks: 29
Thanked 172 Times in 61 Posts
bunti_o4u is on a distinguished road
I tried to create new page between welcome page and select directory page but no new page is getting created in the installer.

procedure CurPageChanged(CurPageID: Integer);

wpLicense:
begin
ButtonSetText(NextBtn,'Proceed');
ButtonSetText(BackBtn1,'Back');
end;

function ShouldSkipPage(PageID: Integer): Boolean;
begin
if (PageID <> wpWelcome) and (PageID <> wpLicense) and (PageID <> wpSelectDir) and (PageID <> wpInstalling) and (PageID <> wpFinished) then
Result:=True
else
Result:=False;
if (ISDoneError = True) and (PageID = wpFinished) then
Result:=True;
end;
Reply With Quote