01-17-2016 02:05 PM
Hello,
I developped an automated process which consisted of several for loops running different recipes in sequence. I also have a while loop that read csv file generated during the automated process and display process information on the homescreen. My problem right now is I am not sure how to stop the csv read while loop automatically at the end of the process so that the entire program will stop. Please see picture for details.
Thanks
FLiu
01-17-2016 02:09 PM
It is much easier to see what you are doing and to understand your situation and problem if you attach a VI file instead of a picture of (part of) a Block Diagram. We often want to see the "missing pieces", and may want to test your code or our modifications to it.
Please attach the VI.
Bob Schor
01-17-2016 03:56 PM - edited 01-17-2016 04:00 PM
As Bob already said, your image is insufficient.
@FLiu wrote:
I developped an automated process which consisted of several for loops running different recipes in sequence.
Your image does not show any for loops.
@FLiu wrote:
I also have a while loop that read csv file generated during the automated process and display process information on the homescreen. My
OK. we see a while loop.
@FLiu wrote:
My problem right now is I am not sure how to stop the csv read while loop automatically at the end of the process so that the entire program will stop.
There are plenty of ways to share information between parallel processes (queues, notifiers, shared variables, global variables, local variables, etc.). Where do you have problems? What have you tried?