03-22-2011 09:17 PM
I have a program with multiple loops. How can I make it so that one loop will wait until another one is finished before it begins?
Thanks,
arithehun
Solved! Go to Solution.
03-22-2011 09:25 PM
Run a wire from the first loop to the second, even if you don't need to do anything with the data on that wire.
I would recommend looking at the online LabVIEW tutorials
LabVIEW Introduction Course - Three Hours
LabVIEW Introduction Course - Six Hours
03-22-2011 09:35 PM
Pure awesomeness! Thank you very much!
03-22-2011 09:48 PM
How can I make it so that one loop will wait until another one is finished before it begins?
just SIMPLY wire them serially, so you can maintain the sequence of your loops. error clusters are commonly used in this method (coz most functions have built-in error terminals on it), but you can also used other wires to be inputted from your previous loop to your next loop. see picture below. you can also customize your buttons (by property node - disable/visible) to let the user used the RIGHT stop button in your existing running loop (other buttons for stopping loop are disabled or invisible).