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
try this
this will return a char, wich you can easly converto to string
or