SdLogonUserInformation

InstallShield 2014 » InstallScript Language Reference

Project: This information applies to the following project types:

InstallScript
InstallScript MSI

The SdLogonUserInformation function displays a dialog that prompts the end user for existing user account information or new user information if an account is to be created during the installation.

If the end user clicks the Browse button next to the User box, the SdLogonUserBrowse dialog is displayed.

Syntax

SdLogonUserInformation (byval string szTitle, byval string szMsg, byref string szAssociatedAccountName, byref string szAssociatePassword);

Parameters

SdLogonUserInformation Parameters

Parameter

Description

szTitle

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

szMsg

Specifies the message in the dialog. To display the default title, pass a null string ("") in this parameter.

szAssociatedAccountName

Specifies the BYREF value that is the account name. Example: INSTALLSHIELD\John Smith

szAssociatePassword

Specifies the BYREF value that is the password.

Return Values

SdLogonUserInformation Return Values

Return Value

Description

NEXT

Indicates that the user selected the Next button

BACK

Indicates that the user selected the Back button.

< ISERR_SUCCESS

Indicates that the dialog could not be displayed.

See Also