Yeah, I mentioned that possiblility but the downside to that technique is that you might have to process any auto-indexed arrays. For example, say a for loop normally has 100 iterations. If the abort condition a received after the first iteration, the auto-indexed array would still have 100 elements but 99 would have to be dummy values. Depending on what you're doing, you might have to modify your program to detect the dummy values or remove them from the array. One other useful technique in quicly aborting, is to have the loop where the abort is detected, set an error condition. If all of the subVIs have a outer case statement with the error in cluster wired to the selector and the error case being a do nothing, the subVIs will ret
urn control to the main VI quickly. Just something to keep in mind when designing your next app.