SdPatchWelcome Example

InstallShield 2024 » InstallScript Language Reference

Project: This information applies to InstallScript MSI projects.

/*--------------------------------------------------------------*\

*

* InstallShield Example Script

*

* Demonstrates the SdPatchWelcome function.

*

* This function displays a welcome message to the end user during

* a patch installation.  This function is called in the default

* script for the OnPatchUIBefore event, which can be found in the

* Miscellaneous event category for InstallScript MSI projects.  

*

\*--------------------------------------------------------------*/

 

#include "Ifx.h"

 

function OnBegin()

STRING szTitle, szMsg;

begin

// Display SdPatchWelcome with default title and message

szTitle = "";

szMsg   = "";

SdPatchWelcome(szTitle, szMsg);

 

end;