Hi,

I have this:

AddHandler TextBox1.KeyPress, AddressOf keypressed

...
...

Sub keypressed(ByVal o As [Object], ByVal e As KeyPressEventArgs)
If e.KeyChar = Microsoft.VisualBasic.ChrW(13) Then
Me.SelectNextControl(o, False, True, False, True)
e.Handled = True
End If

End Sub 'keypressed
...
...
...But, I can catch event like key down, key up, etc ????

thanks
jevr.,-