LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

array index display replaced with ring control

I replaced the standard array index control with a ring control that has four different text values. Would it be possible to programmatically replace the text in this ring control while a vi is running?? The ring is another customized control. What I want to do is have a two dimension array with ring controls for both dimensions. The second dimension would have different text values based on what is selected with the first dimension.
0 Kudos
Message 1 of 2
(2,667 Views)
Just create a pull-down menu for each dimension and add the items necessary using the Strings[] property (write an array with the names of the items it is to refer to to it)...You can rebuild the list of one menu (the second dimension in your case) if the other has been changed...(detect a change in the first dimension menu, then write the new array to the strings property of the second d)

The values of the pull-down menus you build an array of and wire that array to the index values property of the array.
0 Kudos
Message 2 of 2
(2,667 Views)