Hello,
I have a doubt regarding while loop, suppose if we run a while loop continuously after its maximum no. of iteration whether it will hang/stop or it will roll back from the starting zero. For this I had tested a while loop, when it reaches the maximum I32 value it got hang. But in the NI site they have provided information given below....
Problem: I am using a While or For loop in LabVIEW, and I was wondering what happens once I exceed the maximum loop iteration count (2147483647). Does the loop stop execution? Does the count roll over?
Solution: The loop count will rail at the maximum I32 value (2147483647), yet the loop will continue iterating. If you have an application that nears the maximum loop iteration count, you need not worry about the loop execution terminating. However, the count will no longer be accurate after it rails at the maximum value listed above.
But actually this is not happening. when it reaches the maximum value the program hangs and its not going to the next iteration. Is any way to refresh the while loop to afresh from its initial zero value.
Labview Lovers