I use the code below for moving to textboxes in a form, with enter and backward with shift+tab. I want to be able to autoselect the value when moving to textboxes…

Thank you

Code:
  Private Sub Form1_KeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles MyBase.KeyDown
        If e.KeyCode = Keys.Enter AndAlso TypeOf Me.ActiveControl Is TextBox Then
            Me.SelectNextControl(Me.ActiveControl, Not e.Shift, True, True, True)
        End If
    End Sub