Determines whether or not the pre-defined downloading wizard page should be shown. The pre-defined downloading wizard page will not be shown if all remote files have been downloaded.
Please call the procedure in the end of the ShouldSkipPage event function if you want to use the pre-defined downloading wizard page. If the event function isn't defined, please create it.
procedure DwinsHs_ShouldSkipPage(CurPageID: Integer; var ChangeResult: Boolean);
Specifies the ID of current wizard page.
Returns whether or not the pre-defined downloading wizard page should be shown if the CurPageID parameter is set to the pre-defined downloading wizard page. Its value will not be changed if the CurPageID parameter isn't set to the pre-defined downloading wizard page.
You should use the procedure in the ShouldSkipPage event function:
function ShouldSkipPage(CurPageID: Integer): Boolean;
begin
Result := False;
...
DwinsHs_ShouldSkipPage(CurPageID, Result);
end;
The procedure is avaliable only when the DwinsHs_Use_Predefined_Downloading_WizardPage marco is defined.
Copyright © 2001-2022, Han-soft Corporation. All rights reserved.