During debugging in VS2003, I type variables into the immediate window and
get this:

?e.KeyValue
&H55
?e.KeyValue.ToString
"85"
?e.KeyChar
"u"c
?e.KeyChar.ToString
"u"

Have I got encoding set to something funky....how do i set it so that
e.KeyValue is "85" instead of having to translate with adding .ToString

Harry