textbox Enter KeyEvent Argument not handled

textbox Enter KeyEvent Argument not handled

SRSDS
Advisor Advisor
876 Views
2 Replies
Message 1 of 3

textbox Enter KeyEvent Argument not handled

SRSDS
Advisor
Advisor

I have a pallete with a textbox. The keydown event is triggered on every keydown event apart from  Enter.

    Private Sub txtBox_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtBox.KeyDown
        If e.KeyCode = Forms.Keys.Enter Then MsgBox("Enter Pressed")
    End Sub

 Has me baffled.

0 Likes
877 Views
2 Replies
Replies (2)
Message 2 of 3

Alfred.NESWADBA
Consultant
Consultant

Hi,

 

the key <ENTER> has a special function as it is used to change the focus to the next control in tab-order. So the key is handled from another part and the event is then not fired to your eventhandler as "it is handled already".

 

I have searched a little and I think >>>that link (scroll down to the end)<<< comes close to what you are looking for.

 

The other opportunity would be to catch the LostFocus event it the fits to your workflow.

 

- alfred -

 

------------------------------------------------------------------------------------
Alfred NESWADBA
ISH-Solutions GmbH / Ingenieur Studio HOLLAUS
www.ish-solutions.at ... blog.ish-solutions.at ... LinkedIn ... CDay 2026
------------------------------------------------------------------------------------

(not an Autodesk consultant)
0 Likes
Message 3 of 3

SRSDS
Advisor
Advisor

Hi,

I tried the code from the page but it was causing some sort of problem in loading the pallete container.

 

I've found out that the KeyUp event can be used. The KeyDown and KeyPressed were two that I was trying previously.

 

But now that I think about it, the user has to make sure that they press enter so it's probably not what I want.

I think I should stick to doing it live with the TextChanged event.

 

Thanks again

0 Likes