05-27-2010 12:07 PM
In a C-Sharp application, is there a way to detect if a step was skipped when the execution has completed?
ApplicationMgr.GetRunState() and ApplicationMgr.GetTerminationState() don't tell if the execution was complete (nothing skipped) or incomplete (1 or more steps skipped).
Do I need to walk through the steps and use the Step.GetRunModeEx() method?
Solved! Go to Solution.
06-01-2010 03:24 PM
Hi tlaford,
You will still need to check each step, but I believe that what you are trying to achieve would be better accomplished through the use of Step.ResultStatus:
Step.ResultStatus
Specifies the status string for the step.
Although you can define custom status strings, this property is usually set to one of the StepProperties constants.
06-02-2010 12:43 AM
Can you explain a little more of what you are trying to achieve.
What is this C# application, a User Interface?
Regards
Ray Farmer
06-02-2010 06:37 AM