On a continuous Form, I'd like - if possible - to be able enter two digits in intField1 and - without having to hit the Tab key, or click on txtField2, etc - to have the focus set to txtField2. Is that achievable.......in VBA or otherwise (maybe via a Validation Rule) ? I've been trying the code below with After_Update, Before_Update, On_Dirty... but can't get anything to work. Can it be done ?
If Len(Me.intField1.Value) = 2 Then
Me.txtField2.SetFocus
End If
If Len(Me.intField1.Value) = 2 Then
Me.txtField2.SetFocus
End If