Hi,
I would like to move to a specific tab stop location after update if the current field is left bank.
I have tried using the code:
But if the user presses "Tab" or "Enter" the cursor goes to the next tab stop instead
I would like to move to a specific tab stop location after update if the current field is left bank.
I have tried using the code:
Code:
Private Sub JobDueBy_AfterUpdate()
if Me.JobDueBy = "" then
DoCmd.GoToControl Me.JobsLive
Me.Refresh
End Sub