> Error:An exception occured within the extrenal code called by a Call
> Library Node. What does this mean?
>
This means that the DLL or library threw an uncaught exception, which LV
then caught. Various reasons for this include dereferencing a bad
pointer, executing an illegal instruction, turning on some other
exceptions such as signalling NaNs and performing math that creates one.
Finally, if the DLL calls code that throws an exception in a low
memory situation or something similar, then the DLL should catch it,
otherwise catches it to avoid it crashing the executable.
Greg McKaskle