DwinsHs_ShouldSkipPage procedure

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.

Declaration:

procedure DwinsHs_ShouldSkipPage(CurPageID: Integer; var ChangeResult: Boolean);

Parameters:

Example:

You should use the procedure in the ShouldSkipPage event function:

function ShouldSkipPage(CurPageID: Integer): Boolean;
begin
  Result := False;
  ...
  DwinsHs_ShouldSkipPage(CurPageID, Result);
end;

Note:

The procedure is avaliable only when the DwinsHs_Use_Predefined_Downloading_WizardPage marco is defined.