How can I format my character code to a string name

392 Views Asked by At

How can I format my character code (example: 13=enter) to a string format.

I tried using this method

(New KeysConverter).ConvertToString(13) '13 or Keys.Enter

But it formats characters such as whitespaces too, so that they look like "Space", and I only want the special characters such as CTRL or SHIFT formatted.


Let me try to clarify

Keys.A should become "a"
Keys.Space should become " "
Keys.PrintScreen should become "[PrintScreen]"

And I want a solution that works for all the keys that are like this, I don't want to check "manually" like so:

If e.KeyCode = Keys.Space Then...

I'm using Visual Basic Express Edition 2010

2

There are 2 best solutions below

9
On

try this

chr(13)

this will return a char, wich you can easly converto to string

Chr(13).tostring

or

Cstr(chr(13))
1
On

try e.KeyCode.ToString It will not give you exactly what you want, for instance e.KeyCode = Keys.A will become A never "a".

And e.KeyCode = Keys.PrintScreen will become "PrintScreen" without the brackets, and Keys.Space will become "Space". Likewise "Enter" etc...