10-06-2009 02:13 PM - edited 10-06-2009 02:19 PM
10-06-2009 02:33 PM
You Should start by using error wires between VIs thsi si a good practice. It will engforce data flow and allow errors to propogate and skip code that should not run durring error condition.. IE if DAQ init fails dont do DAQ start and Daq read. The code here can cause problems since it is not easy to read but also does not handle errors properly. You should always wire errors out to atleast the simple error handler otherwise you might not know that you are in an error state.
10-07-2009 12:40 PM
Well actually I had those wired; I was deleting some to see the effect as it mentions in the Help to wire a VI's error out to disable automatic error handling.
When I wired all the error terminals through the DAQ VI's (as in the examples), I used to get error messages. Now that my program is much larger, I don't. I'm wondering what causes that.
10-07-2009 02:06 PM