Tab to Next Field Automatically

S

Smitty52

How can I setup a field in a Form so that when the user completes a field, it
automatically tabs to the next field?
For example, they fill in the State field (just two characters) and then it
automatically tabs to the next field without any user intervention?
 
B

BruceM

If you set the input mask for the State field to LL (two letters, required),
then set the AutoTab property to Yes (Other tab), the next control in the
tab order should receive the focus as soon as both letters are entered in
the State field. Adapt this principle as needed for other fields.
 
Top