DwinsHs_BackButtonClick procedure

During the download operation using the DwinsHs_CurPageChanged procedure (in the pre-defined downloading wizard page), the procedure terminates the download operation if the "Back" button is clicked on.

Please call the procedure in the end of the BackButtonClick 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_BackButtonClick(CurPageID: Integer);

Parameter:

Example:

function BackButtonClick(CurPageID: Integer): Boolean;
begin
  Result := True;
  ...
  DwinsHs_BackButtonClick(CurPageID);
end;

Note:

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