08-09-2012 08:58 AM
Hello,
In my sequence i call some subsequences. How can i measure the time that each subsequence needs?
Something like:
Statement: StationGlobals.TimeElapsed = 0
-> SOMETHING HERE TO START A COUNTER <-
call subsequence
Popup: Str(TimeElapsed)
Thanks for help
Solved! Go to Solution.
08-09-2012 02:10 PM
StationGlobals.Time = Seconds()
.... // stuff to time
StationGlobals.Time = Seconds() - StationGlobals.Time
You might also want to check out the Basic Step Time Report example in TestStand 2012 (you can now download an eval).