‎02-16-2005 06:36 PM
‎02-16-2005 09:32 PM
‎02-16-2005 10:14 PM
‎02-17-2005 02:18 AM
‎02-18-2005 05:39 PM
‎02-19-2005 01:11 PM
‎02-21-2005 02:11 PM
‎02-21-2005 02:40 PM
‎07-14-2009 02:42 PM
I want to run a VI more than once at a time, but not as a subVI. Can it be done? There are multiple furnaces that I am tracking with a VI, but I want it to be such that each one can be tracked separately from the others.
I simply used a ring and a case structure around the DAQmx create channel subVI.
‎07-15-2009 04:33 AM
If you know the number of VIs in advance, the easiest thing to do is to place several copies of the VI on the block diagram and make sure they are not connected. This will cause them to run in parallel.
If you need to start running them and keep the calling VI running, you will want to use the Run VI method. You can search for "dynamic loading" or "dynamic VIs" to see some more details an examples. There should also be some example in the example finder (Help>>Find Examples).