I have upgraded to .Net but i've got a problem

I used to use keydown and keycode to jump from one textbox to another using the enter key:

Private Sub txtdbnr_KeyDown()
Dim KeyCode As Short
If KeyCode = 13 Then
txtdbn.Focus()
End If
End Sub

isn't this possible in .net?

how can i then do it?

Snorri