I'm new to VB, and I need some help. I'm trying to get the 'Enter' key to behave like the tab key in a combobox control. I've placed the following code in the keypress event:

If e.KeyChar = ToChar(Keys.Enter) Then
NextTextBox.Focus()
End If

When ran, nothing happens. I've placed a break point at the 'private sub' line, and the code is not breaking. What am I doing wrong?