Even if you don't use them, include Error In and Error Out in all of your vi's to make wiring and data dependency easier. You can avoid using sequence structures by wiring Error In and Error Out in the order of execution desired. See top half of picture on how to pass the error straight through.
Also, you might not want to execute some code if there is an error. An example is readign from a file. If the file does not exist, how can you read from it? When opening the file, an error will occur since it doesn't exist (unless you specify create). In the read function, the error in determines whether to attempt a read or not. That way you are not creating a multitude of errors from one major error. See bottom half of picture.
Message Edited by tbob on 08-01-2006 12:43 PM