> I am using a subvi whose panel opens when called. I want to be able to
> stop the subvi -- not just close it -- when it's done. Can anyone
> help?
You have several options. The easiest is to abort the subVI. This will
work if the subVI was dynamically called, otherwise it will abort the
root VI currently executing the subVI.
Just a bit more work is to let the subVI finish itself. Give the subVI
a termination condition -- a global variable, a user event, a notifier,
event, or other signalling object, and send the message when you would
like the subVI to return.
Greg McKaskle