I would like to run my VI continuously when the VI executes. I know that I can set it up to run when execute, but after once execution, my program stops? Is there a way to set the VI to run continuosly?
You could put the .vi code inside a while loop with the condition terminal wired to a TRUE constant. Better yet, use a boolean control on the front panel wired to the condition terminal of the while loop. That will allow the .vi to run continuously until the front panel boolean is clicked. Just make sure that you select "Stop if True" (LV 6 or greater) for the condition terminal or put a "not" between the boolean terminal and the condition terminal.