SdShowInfoList

InstallShield 2014 » InstallScript Language Reference

Project: This information applies to the following project types:

InstallScript
InstallScript MSI

The SdShowInfoList function creates a dialog that displays a list of scrollable messages. SdShowInfoList can display lists of up to approximately 57,200 characters.

Syntax

SdShowInfoList ( szTitle, szMsg, listID );

Parameters

SdShowInfoList Parameters

Parameter

Description

szTitle

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

szMsg

Specifies the message to display on one line above the information box. If the message is too long to fit on one line, it is truncated on the right. If the message includes a newline escape sequence (\n), the text following that escape sequence is not displayed. To display the default message (“Text”), pass a null string (“”) in this parameter.

listID

Specifies the list of messages to display in the dialog. All messages that appear in the dialog are read only.

Return Values

SdShowInfoList Return Values

Return Value

Description

NEXT (1)

Indicates that the Next button was clicked.

BACK (12)

Indicates that the Back 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