Is there anyway to break out of a DO WHILE loop without having to make the while condition false? Their isn't any type of BREAK statement or any statement to break out of a loop? So for example, if you did
DO WHILE .T.
* You would be in an infinite loop.
ENDDO
How would you break out of the loop in the above example?
DO WHILE .T.
* You would be in an infinite loop.
ENDDO
How would you break out of the loop in the above example?