How about the other way around. I have an enum value from radio buttons I'd like to convert to a string. The labels of the radio buttons are:
- NORMAL
- SINGLE
- BURST
- DCYCLE
The output type is Unsigned Long(0 to 4,294,967,295), enum{NORMAL, SINGLE, BURST, DCYCLE}. I assume it outputs something along the lines of "0 NORMAL", "1 SINGLE" etc IF properly converted to string form. I can then strip the "1 " and use the enum value to include in a concatenated string to create a command to send to a Pulse Generator. I tried using the type cast function and the flatten function with no inputs other than the radio button output. Then simply placed the output from the converter to a string indicator to check operation. It appears that I get " " or " []" (four spaces, or 3 spaces and a box). I'm clueless, but investigating. Whose got ideas?