> repeat with i = 0 to 99 > repeat with j = 0 to 4 > -- do something > j = j + 1 -- sorry, no increment operator in Lingo > end repeat > i = i + 1 > end repeat > Dang, I'm not awake yet. You don't need to re-increment in the loop. This will do fine:
> repeat with i = 0 to 99 > repeat with j = 0 to 4 > -- do something > end repeat > end repeat Cordially, Kerry Thompson [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
