RE: Nested Loop limit?

2001-03-06 Thread Kevin Gilchrist
Figured it out, I wrote the conditional loop on the notion that it would only check the condition after and not before an iteration , I guess like a DO condition UNTIL kinda' loop. -Original Message- From: Kevin Gilchrist [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 06, 2001 5:52 PM

RE: Nested Loop limit?

2001-03-06 Thread Bryan Love
There is no limit, but as you get deeper you have to pay close attention so that you don't reassign a variable that is being used by a parent loop. In your case you need to ensure the following: - that the index of the first loop isn't being manipulated inside any of the nested loops - that