08-23-2006 01:05 PM
08-23-2006 01:12 PM - edited 08-23-2006 01:12 PM
Message Edited by jasonhill on 08-23-2006 01:13 PM
08-23-2006 01:49 PM
Yes there is no break and continue inside of a for loop unlike many other languages. This is most likley due to breaking the dataflow model. 2 choices esist
1. while loop with a counter (i>=itteration max) stop ORed with your additional stop condition (stop is true)
2. Use a for loop but place the code inside of a case structure (less efficient since the loops will continue to spin eventhough there is no code to execute)
Paul
08-23-2006 02:24 PM