Hello everybody,
I have two short questions that probably can be answered by experts on the board here:
a) I currently have a VI with several channels (8) of incoming analog data. I want the user of the VI to give the option which values to log to file. He can check a checkbox.
Currently I'm using the 'select' function, if its true it passes on the analog value, if false it passes a 0, but I dont want it to appear in my array at all because logged zeros are kinda useless.
Whats the way to do this?
b)As a programming habit, when I want to pass values between various running loops I tend to make an invisible indicator in that loop (string, numeric etc), and then use a property node of that indicator for the value in other loops. Is this a good way to do this? Works though.