I'm using version 8.1.1 of LabWindows and I was wondering if there is any way of putting a value that is currently not defined in the item/value pair combinations for the control using the SetCtrlVal function? I don't want to have to validate the non-defined value against the item/value pair combinations and then insert the new value through my program. IE - the ring control should realize that the value does not match any of its defined item/value pair combinations and automatically perform some operation when SetCtrlVal() is called. It would be acceptable for the control to have the red-box around it similiar to when a numeric control is out of range when this happens.
The problem I'm having is that a get a block of data from an external device and I want to display the values in a set of ring controls. In some cases the data from the external device has not been initialized and therefore does not match any of the valid values (enties in the ring control) that it should. Thus the UIR containing the ring controls looks like it either didn't update or that the value is set to one of the correct values for that parameter, which is missleading to the user.
Thanks