How do I find the KeyAscii Value when i press ENTER or Any Key from the keyboard in the TextBox Control .
Help Help !!
:confused:
Printable View
How do I find the KeyAscii Value when i press ENTER or Any Key from the keyboard in the TextBox Control .
Help Help !!
:confused:
simply put this in the keypress event of a textbox , then you will get the ascii code for the pressed key
VB Code:
MsgBox(Asc(e.KeyChar()))