LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Invisible controls

How do set controls appearing on the front panel to be invisible?
0 Kudos
Message 1 of 5
(3,273 Views)
There are 2 methods depending on what you want.

1. You can find the controls terminal on the diagram, then right-click on the terminal and select "Hide Control"

2. You can programatically make controls visible and invisible by using the "Visible" property. Right click on the control and select Create>>Property node. You can then select the Visible property and wire trues and falses in as you want it to show up an disappear.
Message 2 of 5
(3,258 Views)
In your block diagram, right click the control and click "Hide Control".

Ryan
Ryan

LV 7.1
Message 3 of 5
(3,257 Views)
Controls/ Indicators on the FP can be set visible/ invisible by its property node.

See attached VI 🙂

Cheers!
Ian F
Since LabVIEW 5.1... 7.1.1... 2009, 2010, 2014
依恩与LabVIEW
LVVILIB.blogspot.com
Message 4 of 5
(3,255 Views)
Right click on the control or terminal and select Create>Property Node. The default property node created is the Visible property. Right click on the property node and select Change to Write. Then, wire a false to it when you want it invisisble and a true to it when you want it visible. To view all of the possible properties, right click and select Properties. You can also make a control invisible from the front panel by right clicking and selecting Advanced>Hide Control. Of course, this makes the control invisible until you edit the program and if you need a permanent invisible control, are you sure you need a control at all?
Message 5 of 5
(3,254 Views)