SdWelcome

InstallShield 2014 » InstallScript Language Reference

Project: This information applies to the following project types:

InstallScript
InstallScript MSI

The SdWelcome function creates a dialog that displays a welcome message to the end user.

Syntax

SdWelcome ( szTitle, szMsg );

Parameters

SdWelcome Parameters

Parameter

Description

szTitle

Specifies the text to display in the title of the dialog. To display the default title (“Welcome”), pass a null string (“”) in this parameter.

szMsg

Specifies the message to display in the Welcome dialog. To include in this message the product name set by a previous call to SdProductName, insert the place holder %P anywhere in the message string. When the message is displayed, %P is replaced by the product name. To display the default welcome message (“Welcome to the %P Setup program. This program will install %P on your computer”), pass a null string (“”) in this parameter.

Return Values

SdWelcome Return Values

Return Value

Description

NEXT (1)

Indicates that the Next button was clicked.

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