I have a case structure in which one of the cases runs 4 Dialog Box subVIs in order (Dialog Box 1, then Dialog Box 2, then Dialog Box 3, and then Dialog Box 4). The Dialog Box subVIs are all exactly the same VI call but with different a different dialog message. The dialog box allows the operator to hit an ABORT button to exit the dialog box.
Basically, if the operator aborts a Dialog Box subVI, I do not want to run any Dialog Box subVI steps that run after it.
For Example:
If Dialog Box 1 is aborted, I do not want to run Dialog Box 2, Dialog Box 3, or Dialog Box 4 subVIs.
If Dialog Box 2 is aborted, Dialog Box 1 subVI would have run, but I do not want to run Dialog Box 3 or Dialog Box 4 subVIs.
If Dialog Box 3 is aborted, Dialog Box 1 and Dialog Box 2 subVIs would have run, but I do not want to run Dialog Box 4 subVI.
What is the most efficient way to do this?
Thanks so much!