<snip> >>>Any other ideas?
>>>George
If you don't mind the additional overhead of a GOSUB, you could modularize the
code as such:
.
.
.
FOR T=1 TO 10
GOSUB INNER.LOOP
NEXT T
.
.
.
INNER.LOOP: * two additional loops
FOR Q=1 TO 6
FOR X=1 TO 9
IF CONDITION THEN RETURN
NEXT X
NEXT Q
* normal termination of for-next's
RETURN
-------
u2-users mailing list
[email protected]
To unsubscribe please visit http://listserver.u2ug.org/
