I added a few custom pages to my setup. In one of this custom pages I do some checks. If this checks failed, I want switch to finish page. How can I do this?
I can not do this with ShouldSkipPage event function because:
function ShouldSkipPage(PageID: Integer): Boolean;
begin
// this will NEVER happened - see documentation below
if (PageID = wpInstalling) or (PageID = wpPreparing) or (PageID = wpWelcome) then
begin
// skip install - simply for example
result := True;
exit;
end;
resutl := false;
end;
From Inno Setup documentation:
The wizard calls this event function to determine whether or not a particular page (specified by PageID) should be shown at all. If you return True, the page will be skipped; if you return False, the page may be shown.
Note: This event function isn't called for the wpWelcome, wpPreparing, and wpInstalling pages, nor for pages that Setup has already determined should be skipped (for example, wpSelectComponents in an install containing no components).
ShouldSkipPageworked for me. Add some minimal sample code to your question that demonstrates the problem you're having. – mghie Feb 5 '10 at 10:41Example1.issfile. Add aShouldSkipPagefunction that saysResult := PageID <> wpFinished;Run the setup, and you will only see the Welcome and the Finished pages. That's a good thing, both should always be there, else it would be surprising for the user. He at least needs to be able to cancel on the first page, and he needs to know that the setup has finished. – mghie Feb 5 '10 at 14:25