Hello,
I currently have:
Private Sub textbox1_change()
If Len(TextBox1.Text) = 3 Then
TextBox3.SetFocus
End If
End Sub
Once max length on last textbox is reached, I would like the form to submit automatically without clicking command button, and then to reset the form with a setfocus of textbox 1.
I appreciate any help.
Thanks,
DC
I currently have:
Private Sub textbox1_change()
If Len(TextBox1.Text) = 3 Then
TextBox3.SetFocus
End If
End Sub
Once max length on last textbox is reached, I would like the form to submit automatically without clicking command button, and then to reset the form with a setfocus of textbox 1.
I appreciate any help.
Thanks,
DC