Programming a table in CVI, have done it before but not much.
Ok, so each item in a normal Ring control has Label | Value | Index associations.
When using a Ring embedded in a cell in a Table however, I only see a Value. You can apparently programatically access the index based on that value. Shouldn't there be the same Label | Value | Index for a Ring inside the table? All you can apply is a Value (which can be a string, huh?). I don't see the reasoning here. It looks like you have to get the index from the "value" and then programatically associate that index with a numeric. Wow how convoluted can you get.
What I want is a ring that has labels of none | 3rd | 6th | 12th that has values of 0, 3, 6, 12 when selecting index 0, 1, 2, 3 respectively.
It appears I have to allow the user to select an item from the ring list (the 'value in the setup' dialog box), then get the index from that ring item 'value', then assign a true numeric value based on the index to a variable. Is this correct or am I missing something here?