08-24-2006 11:25 AM
08-24-2006 11:30 AM
08-24-2006 03:45 PM
Hi,
The step will loop while the expression is True
Step.Result.Numeric > 1 && Step.Result.Numeric < 10That will keep it looping until the expression becomes False which would be outside those limits. But its a While loop therefore the test is done before it enters the loop. As Step.Result.Numeric is 0 this will set the expression False and therefore never enters the loop.
So you have to Set Step.Result.Numeric to some value that will allow the expression to be True. say the value of 5.
Hope this is clear.
Regards
Ray Farmer
08-24-2006 05:04 PM