I'm struggling to get my head around the programming mindset used in
LabVIEW (I'm a C++/C programmer, usually). I just can't seem to do
the simplest things, sometimes - at the moment, I'm trying to do this:
initialise a string
do some processing
set the string to the result
I just can't get it right. I've got a sequence structure, with the
string outside it, and I'm trying to wire a string constant to it in
the first frame, and in the second frame I'm trying to wire the output
from an exception handler. But I can't get labVIEW (v7) to realise
that only one of these inputs will be active at a time. (The same
problem would hold for a case statement - if true, set the string to
"TRUE", if false, set the string to "FALSE").
How do I do this? I suspect I'm approaching it from totally the wrong
point of view, but I don't know how else to approach it.