How Do I Locate and Access the Application Manager Through the TestStand Sequence Editor?

Updated May 4, 2023

Reported In

Software

  • TestStand

Issue Details

In the TestStand user interfaces, accessing the Application Manager is simple, since it exists as an activeX control. However, I would like to access the application manager properties and methods through a sequence. How can I accomplish this?

Solution

The Application Manager (ApplicationMgr) is an ActiveX object that is actually part of the TestStand UI Controls ActiveX server. To access a reference to the application manager object, use the following Expression:

RunState.Engine.GetInternalOption(InternalOption_ApplicationManager)

To interact with the application manager object, use an ActiveX Action Step. In the image below, the step is used to access the Executions property. The same procedure can be used to access the other properties and methods of the Application manager Object. Refer to the NI TestStand Help: ApplicationMgr topic for complete documentation on available properties and methods.