TomDuCrosbie
Technical User
i'm stuck in my subform. I have a subform in datasheet view. When I enter data in the next line, I can't get out of the sub form and back to the main form unless I press ESC. The subfrom has an after update event that I know is the problem, as it didn't do this before i added it. This is the evnet.
Private Sub Form_AfterUpdate()
Me.txtUpdatePerson.Value = NetUserID
End Sub
NetUserID is a function that pulls the users network ID.
Any ideas what could be keeping me in the subform?
Tom
Private Sub Form_AfterUpdate()
Me.txtUpdatePerson.Value = NetUserID
End Sub
NetUserID is a function that pulls the users network ID.
Any ideas what could be keeping me in the subform?
Tom