DwinsHs_NextButtonClick procedure

In the pre-defined downloading wizard page, when you click on the "Next" button, the procedure allows you to retry the download operation and disables the Setup wizard to move to next wizard page if the download fails.

Please call the procedure in the end of the NextButtonClick 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_NextButtonClick(CurPageID: Integer; var ChangeResult: Boolean);

Parameters:

Example:

function NextButtonClick(CurPageID: Integer): Boolean;
begin
  Result := True;
  ...
  DwinsHs_NextButtonClick(CurPageID, Result);
end;

Note:

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