02-07-2006 04:57 PM
02-07-2006 05:05 PM
There are lots of ways to have VIs run in parallel and interact with each other. The simplest thing you could do would be to use the Run VI method followed by the Open FP method in your main VI to launch the cancel dialog (with the "Wait Until Done" option set to False). You could use a simple Global Variable to pass a boolean between the VIs as to whether or not they both need to terminate.
Of course, there are other ways to pass the data, like Queues, dynamic events, etc...but for your case, I think a simple global would suffice.
02-14-2006 02:20 PM