I am using an ActiveX control that defines enumerations in an .odl file "typedef enum {RED, GREEN} COLOR;". Visual Basic can extract information about the enumeration (I can type "Dim c As MyControlLib.COLOR" and then type "c = " and VB will provide "RED" and "GREEN" in its auto-completion feature.)
QUESTION: In LabView, is there any way I can use/access these enumerations? In other words, is there a way to specify "RED" instead of zero without defining my own "patch" ring or enumeration control?