I have built a VI based off of the Grab and Save to AVI file example. It has the example being place into the "True" condition of a structured case for recording to AVI file. The "Fasle" condition stops the recording. I have moved the file selection part of the code to the outside of a while loop and place the rest of the code into the while loop. The intent is to have file selection code run first before continuing into the while loop. This way if the user decides to "cancel" the file selection the structure case would switch back to the "False" condition. The cancel and return to the "False" condition works, but I can't figure out how to get the while loop from running. The input to stop the while loop only seem to operate after the code in the while loop has ran once, so I get errors due to not having selected a file path for my AVI. Is there a means to inhibit the while loop from starting at all?