vote up 1 vote down star

Does anyone know why the KeyPress Event doesn't get fired when the user presses a down arrow? I have to look for it in the KeyDown event. I was just wondering if this was something that I was doing wrong or not?

flag
Um What is this in regards to? Which language are you talking about? Which API are you using? You're being pretty vague here so I don't think this question is going to be answered unless you're a bit more specific. – CalvinR Jan 30 at 19:56
read the docs please? msdn.microsoft.com/en-us/library/… – shahkalpesh Jan 30 at 19:58

2 Answers

vote up 9 vote down check

According to the documentation of the KeyPress event (assuming you are using WinForms):

The KeyPress event is not raised by noncharacter keys; however, the noncharacter keys do raise the KeyDown and KeyUp events.

The down arrow key isn't a character key, so this event shouldn't be raised for it.

link|flag
vote up 1 vote down

Use KeyDown instead

Public Class Form1
    Private Sub TextBox1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles TextBox1.KeyDown
        Debug.WriteLine(e.KeyData.ToString + " KeyDown")
    End Sub

    Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress
        Debug.WriteLine(e.KeyChar.ToString + " KeyPress")
    End Sub
End Class
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.