Click here to Skip to main content
15,881,600 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have non-english keyboard, also so instead of 1 of my keyboard i have +. When i press a key i get a string from KeyChar.ToString(), also "+" with non-english keyboard and "1" with english-keyboard.
How can i convert this string to KeyCode Keys.D1 ??
With the condition when the parameter will be one of them, i always get the same result also Keys.D1 in format Keys ??

For example
C#
private Keys ConvertToKeys(string s)
        {
             // code
        }
...

ConvertToKeys("+") // result Keys.D1
ConvertToKeys("1") // result Keys.D1


Thanx for your help !
Posted

1 solution

use hard coding

use if else for conditions and return wt so ever u like
 
Share this answer
 
Comments
pham.quocduy 21-Aug-11 4:20am    
:)Do you know any function for example from WinAPI for this purpose ?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900