10-15-2009 08:01 PM
I use Labview 8.0.
I need several numeric indicators to show some calculated results, but before I get the calculation results, thoes indicator will always show "0" as their default value. So, how can I make these indicator just be blank before I get the result that I want to display?
Thanks!
10-15-2009 08:42 PM
I would post an example but saving for 8.0 is crashing my LV. Here is a snippet which shows one way to do it with property nodes.
10-15-2009 10:50 PM
You can also right click the indicator and go to data operations and than click "make current value Default"
10-15-2009 11:05 PM
10-16-2009 09:14 AM
The string indicator was my first thought, but since the OP asked...
I primarily change the FG/BG colors of an indicator to signal a new value with a little flash or to color code the result, it seems to adapt well to blanking the display. If you don't mind losing the intrinsic ability to change the format at run time and you won't be passing the values to another VI (or don't care about duplicate indicators), then the string indicator could be the simple answer for you. I used to like strings for this purpose, but I would sometimes want a peek at the next digit.
Most often, I do neither, I just use a "I'm busy" boolean indicator.
10-23-2009 05:39 AM
Thank all of you! thanks for your advices.