How do KeyPress work in VB.NET?
In VB6, I just do this:

If KeyAscii = 13 Then
MsgBox "You Press Enter"
EndIf

How do I show the MessageBox in VB.NET "You Press Enter" everytime I press Enter Key?