> The problem is that you were on the right track but using the wrong
> type control. A ring has a text display but it is still just a numeric
> control--hence the problem with the case structure. By contrast, the
> value of an enum IS the string, so you can use the kind of selector
> you originally created.
>
Good answer, but playing the role of "really picky nerdy guy", the enum
is really a bit different from a string. The datatype of the enum is, a
strict set of mnemonics. The wire type carries the set info and the
value is the selected element, which can be both a number and a string
since it references the set of mnemonic strings. OK, I admit it, I
really just like using that word.
Greg McKaskle