Quy Nguyen
Quy Nguyen

Reputation: 68

Virtual KeyCode Asterisk key

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

Answers (1)

Habib
Habib

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

Related Questions