Hi Folks,
I have the following VBA code:
Private Sub CheckIn_AfterUpdate()
DoCmd.SetWarnings (False)
DoCmd.OpenQuery "qryRecByExcUpd"
Me.CheckIn = ""
Me.CheckIn.SetFocus
End Sub
But for some reason after the code is done running the cursor lands on the textbox ontop of CheckIn... Can someone please help me troubleshoot?
Thanks!