02-17-2008 12:45 PM
02-17-2008 01:16 PM - edited 02-17-2008 01:19 PM
Create a property node for the object and select property "disabled". Now wire a 0,1,or 2 to it. Check the context help for details (ctrl+h).
jimmyinCT wrote:
those parameters which are outside the loop, cant be changed once the programming is running in the loop.I would like to grey out the "control" for these items during run time, can this be done?
jimmyinCT wrote:
2. I have a buttons which i want to sit on the edge of a chart that they control.On some of the buttons, they sit on top of the chart, on others, the chart is on top and the button falls under it.Is there a way to control the order in which they reside?For example, i know some other programs have "always on top" features

You can place groups of controls inside cluster containers. You can also use a tab control to only show a certain group of related front panel objects at any time..
jimmyinCT wrote:3. I have categories of large amounts of indicators.I would like to bundle them them up and hide at one time and then show them duing another, at run time of course.Otherwise, i have 100 controls, only half that can be used at one time showing at all times
02-17-2008 01:18 PM
jimmyinCT wrote:
hello,having a hard time doing some things im sure are really simple1. my main program runs inside a while loop.those parameters which are outside the loop, cant be changed once the programming is running in the loop.I would like to grey out the "control" for these items during run time, can this be done?with other OO langages, its done with somelike like, object.enabled = false
Right-click on a FrontPanel (FP) control/indicator and choose Create\Property node. Check-out the "Disabled" property - a value of "2" makes a control Disabled and Greyed
2. I have a buttons which i want to sit on the edge of a chart that they control.On some of the buttons, they sit on top of the chart, on others, the chart is on top and the button falls under it.Is there a way to control the order in which they reside?For example, i know some other programs have "always on top" features
After placing an object on the FP, select it and use Ctrl-J to move it "behind" other objects, and use Ctrl-K to move it "forward". Each FP object has a unique precedence on the FP - pressing Ctrl-K enough times will make it top-most.
3. I have categories of large amounts of indicators.I would like to bundle them them up and hide at one time and then show them duing another, at run time of course.Otherwise, i have 100 controls, only half that can be used at one time showing at all times
02-17-2008 02:36 PM
you guys are great
many thanks
02-17-2008 04:19 PM - edited 02-17-2008 04:20 PM
something funny is gonig on wtih property node
if i select the visible property node, the control is hidden at run time
that is expected.
yet, if i remove everything and start all over with a new file, and try the "disabled node", i get a broken wire.
does the disabled attribute of property nodes not apply to controls?
i just want to grey it out or lock the control it so it cant be changed, not make it invisible.
02-17-2008 04:40 PM
02-17-2008 05:13 PM
to get the visible property node to work, i had to chnage that to write.
somhow, this enabled property node does not seem to take the boolean value, either as read or write
02-17-2008 05:16 PM
nevermind.. i got it
the visible property node takes a boolean input
the disabled property node, as was said earlier, takes an integer input from 1-3
pretty odd though, they are both still teh same basic property node.
02-17-2008 05:47 PM
anotehr oddity is is that after i delele teh property node, the control retains the property, even after i shut down labview
02-17-2008 05:53 PM