Reputation: 68
I want to create an onscreen keyboard but I don't know what is keycode of asterisk/star key (in numpad scope). Can anyone help me.
Upvotes: 1
Views: 2440
Reputation: 223312
A simple way to check it, is if you attach Key Press event against a text box and in the event you put a break point to see what is being returned against *
asterisk. Its value is:
e = {KeyChar = 42 '*'}
Upvotes: 2