In vb.net application I have 10 Textbox and value entered by Barcode scanner
So when one Textbox1 get the value by Barcode scanner the focus moved automatically to another Textbox2 and so on.
I have this code but its working.
Private Sub A1TextBox_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles A1TextBox.TextChanged
'If A1TextBox.Text.EndsWith(vbCrLf) Then
'Me.SelectNextControl(A1TextBox, True, True, False, False)
'End If
End Sub