Using Methods
InstallShield 2026
Project:
An object’s methods can be accessed only at run time. You can call an object’s methods from within your installation project or from another object. To gain access to an object’s methods, you first need to get a reference to that object. The following code displays the current status description for the object:
Set oObj = GetObject("ATL 3.0")
MessageBox(oObj.Status.Description, INFORMATION);