11-13-2000 06:10 PM
03-16-2001 10:19 AM
07-11-2013 12:33 PM
Hi all,
of course, this is an old point, but:
I'm using TestStand 2010 and 2012 and I'm wondering,if this is possible now.
I can't find the properties to set "Run Setup and Cleanup" and "Record Results" of interactive executions.
The only properties I found were "InteractiveExePropagateStatus" and "InteractiveBranchMode".
Is this still not possible?
Thx
Wolfram
07-12-2013 09:02 AM - edited 07-12-2013 09:04 AM
Example of removing the InteractiveRunSetupCleanup setting:
RunState.Engine.StationOptions.ExecutionMask &= ~ExecMask_InteractiveRunSetupCleanup
Example of adding the InteractiveRunSetupCleanup:
RunState.Engine.StationOptions.ExecutionMask |= ExecMask_InteractiveRunSetupCleanup
There is also a flag for the result setting: ExecMask_InteractiveRecordResults
Hope this helps,
-Doug
07-12-2013 09:57 AM
Great, this works!
Thx
Wolfram