I m making a keylogger application. so want to capture capture all keystrokes
like
my code like this
case Keys.A: TextBox1.text=TextBox1.text+"A";
break;
but i want that when user press
Shift+2, Shift+A than it print @ and A respectively.
how can i determine that shift key is pressed or not?