NI TestStand

cancel
Showing results for 
Search instead for 
Did you mean: 

Step List customization warning

That worked great.  I'm wondering why the same method/properties aren't available for the ExecutionView Steps.  The same type of thing (connect) is done in Configure Execution View Manager, but the column property just isn't there.
0 Kudos
Message 11 of 12
(880 Views)

Each Connect<xxx> method returns a different type of connection that can have different properties and methods.

There is no ConnectSequenceList method on the ExecutionViewMgr because there is no "list" of sequences that corresponds to an execution. There is a "callstack" of sequences, but you connect that to a list control with ExecutionViewMgr.ConnectCallStack, which returns a CallStackConnection. Currently, the CallStackConnection doesn't contain any methods to add columns. This is because we didn't expect that to be generally desired enough to warrant adding it as a feature. Of course, you are free to display the callstack in your own control with as many columns as you want.

0 Kudos
Message 12 of 12
(874 Views)