12-12-2006 12:09 PM
12-12-2006 12:26 PM
The ability to 'reading one line of code to the next' is absolutely inherent to LabVIEW. LabVIEW is a dataflow language and to control sequencing, you just have to have data out from one function wired to data in of the next function. The easiest way to do that is to use the error in/error out connections that all of the express VIs (and the majoirty of all other functions) have. In your case, wire the error out of the first express VI to the error in of the Delay function, error out of this to the error in of the next express VI, etc.
With delays of 10 minutes, you might want to use something other than the Delay function. If you do add a stop button to your while loop, it would take up to 10 minutes for the loop to stop. Do a search of the LabVIEW forum for methods to abort a wait.
You might also want to check the resources available for learning LabVIEW at http://zone.ni.com/devzone/cda/tut/p/id/5199.
p.s. In the future, it's better to ask general LabVIEW questions in the LabVIEW forum instead of multifunction DAQ.
12-12-2006 12:30 PM