03-21-2006 01:58 AM
03-21-2006 10:39 AM
That is one of the problems with nested while loops. I would recommend restructuring the code to eliminate the second loop. However, there is a quick and dirty method to do what you want:
Move the Exit button inside your inner loop. Use a boolean OR and stop the inner loop if either Measure or Exit are pressed. Wire the Exit output out to your outer loop as well, so it will stop the outer loop.
Bruce
03-22-2006 07:53 PM