Implement the Enter key on VB.NET instead of the Tab key, with the following methods:
First set the form of the keypreview property for true
Then add the following code:
Private Sub FrmLogin_KeyPress (ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles MyBase.KeyPress' Enter replaced by Tab If e.KeyChar = Chr (13) Then e.Handled = True SendKeys.Send ( " {Tab} ") End if End Sub