private void txb_keydown(object sender, KeyEventArgs e)
{
//check if A key was pressed
if (e.KeyCode == Keys.A
{
//OK
}
}
The above code works fine, but how can I do this for the % key?
Looked everywhere, I can check for the tilde key etc. but I can't seem to find the Keys enumeration code for the % key.
Any help will be much appreciated.