SdDiskSpace2 Example

InstallShield 2014 » InstallScript Language Reference

Project: This information applies to the following project types:

InstallScript
InstallScript MSI

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

*

*  InstallShield Example Script

*

*  Demonstrates the SdDiskSpace2 function.

*  SdDiskSpace2 displays a list view of volumes,

*  required space, available space, and the difference between

*  available and required space.

*

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

 

#include "ifx.h"

 

function OnFirstUIBefore( )

begin

 

// ... show other dialogs ...

 

    // display the disk space requirements

    SdDiskSpace2 ("",

        "Review the available and required disk space " +

        "to determine where to install the application.",

        FALSE);

 

// ... other dialogs ...

 

end;