07-27-2006 09:00 AM
07-27-2006 09:46 AM
07-28-2006 03:30 AM
07-28-2006 08:23 AM
Hi Pac,
There are a couple ways to solve this. The best way is most likely using the Producer/Consumer as suggested. The idea there is to send messages to a parallel loop (the consumer loop) that launches the subVI or performs some other calculation. This does not hold up your main loop (the producer loop) because it only takes a very short time to send the message itself. You can find information on that design pattern here, and a basic template is also available directly from LabVIEW. Just select File >> New to bring up the template dialog and search under Frameworks >> Design Patterns.
Alternatively, you can launch your subVI without waiting for it to finish. Check out my post here on a similar issue. Hope this helps!
07-28-2006 10:06 AM
07-28-2006 10:38 AM
07-28-2006 02:27 PM