In the pre-defined downloading wizard page, when you click on the "
" 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.
procedure DwinsHs_NextButtonClick(CurPageID: Integer; var ChangeResult: Boolean);
Specifies the ID of current wizard page.
Returns whether or not the Setup wizard should move to next wizard page 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.
function NextButtonClick(CurPageID: Integer): Boolean;
begin
Result := True;
...
DwinsHs_NextButtonClick(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.