‎07-18-2006 06:32 PM
‎07-18-2006 08:40 PM

Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.‎07-18-2006 09:04 PM
What exactly are you trying to do?
In a typical scenario, you would leave some of the connectors unwired in the calling program and then you want to detect during running which terminals did not receive data from the calling program. Easiest would be to set a unique default value for each control, then test for the presence of this value in the subVI code and e.g. switch a case structure or similar.
Just pick something that usually does not appear in your input data::
numeric DBL: set the default value to NaN, -Inf, Inf, etc.
Numeric I32: set the default value to -1 if the number is typically always positive.
Arrays: Set default to empty array.
etc.