WOW!! I just tried setting my value to 27 manually, and it STILL does not work!!

Check this out:


TC1=27


Select Case TC1
case 0
TracID1 = " "
case TC1 < 27 'A-Z
TracID1 = TC1 + 64
case TC1 >= 27 '0-9
TracID1 = TC1 + 21
case 37
TracID1 = ":"
case 38
TracID1 = "."
case else
TracID1 = "$"
End Select

The result is "[", when it should be "0"!!! How could I be setting a value of "27" and having this kind of result?

TG