SdStartCopy2

InstallShield 2014 » InstallScript Language Reference

Project: This information applies to the following project types:

InstallScript
InstallScript MSI

The SdStartCopy2 function informs the user that the file transfer process is about to begin. The user can click the Back button to return to previous dialogs in order to change settings as required. Call SdStartCopy2 after retrieving the selections from the user, but before beginning the file transfer process.

Syntax

SdStartCopy2 ( szTitle, szMsg );

Parameters

SdStartCopy2 Parameters

Parameter

Description

szTitle

Specifies the title of the dialog. To display the default title ("Ready to Install the Program"), pass a null string ("") in this parameter.

szMsg

Specifies the message to display in the static text field. To display the default instructions for this dialog, pass a null string ("") in this parameter.

Return Values

SdStartCopy2 Return Values

Return Value

Description

NEXT

Indicates that the user selected the Install button.

BACK

Indicates that the user selected the Back button.

< ISERR_SUCCESS

Indicates that the dialog could not be displayed.

Additional Information

To view an example of this or other dialogs for your installation, use the Dialog Sampler. In InstallShield, on the Tools menu, point to InstallScript, then click Standard Dialog Sampler or Skinned Dialog Sampler.

See Also