I have a TextBox
in my form and I added this event on it:
private void txtValue_KeyDown(object sender, KeyEventArgs e)
{
MessageBox.Show(e.KeyData.ToString());
}
But it always prints the upper case of the letter even though I entered a lower case letter in the textBox. Please see image below:
How should I get the right display? Thanks...