I am creating a simple virtual keyboard. I have a class of all the keys I want in the keyboard. I want to display the correct text for each key by using the System.Windows.Keys enumeration. I simply want to return the character of a given key for both its normal and Shift state. For example...
System.Windows.Forms.Keys.Oem3 is the " and ' key. I want to return those characters for both System.Windows.Forms.Keys.None and System.Windows.Forms.Keys.ShiftKey states.
A function like GetCharFromKey(key As Keys, modifiers As Keys) As Char would be nice?
So I could do something like
NormalKey As String
NormalKey = GetCharFromKey(Keys.Oem3,Keys.None)
I've seen solutions using the user32.dll functions ToAscii() and ToUnicode() and functions that determine the KeyState and then return the character but there as GOT to be an easier way?
I've messed with the KeyConverter class but it doesn't help with the Oem keys.
Jeff Davis