woohoo30ca
New member
- Local time
- Today, 01:36
- Joined
- Sep 18, 2013
- Messages
- 6
I have a form "frmQryIndividual" which contains a subform "frmNotes".
I've been looking everywhere at this error code. The problem I have, is that the majority of the time everything works. Once in a while, there's a run of entries on the subform that when you click on the parent form "frmQryIndividual" the error is thrown. Debugging the error takes me to the code that I have on the parent form...
Private Sub Detail_Click()
'This section recognizes the click on the main from after working in the sub-form and sets the focus back to the salutation field
Forms("frmQryIndividual").SetFocus
Me.Salutation.SetFocus
End Sub
So what happens, is that once a user finishes entering a note into the memo field on the subform "frmNotes" the can click in a blank area of the parent form and the focus is set on the Salutation field (which is visable), then the user can click on the close button on the main form.
For some reason at times, this just doesn't seem to work. I thought it would be some bad characters in the memo field on the subform "frmNotes", but that doesn't seem to be the case.
Like to see if someone has encountered this error only on occasion and if they might be able to guide me to what I can look at for an intermittent error 2110
I've been looking everywhere at this error code. The problem I have, is that the majority of the time everything works. Once in a while, there's a run of entries on the subform that when you click on the parent form "frmQryIndividual" the error is thrown. Debugging the error takes me to the code that I have on the parent form...
Private Sub Detail_Click()
'This section recognizes the click on the main from after working in the sub-form and sets the focus back to the salutation field
Forms("frmQryIndividual").SetFocus
Me.Salutation.SetFocus
End Sub
So what happens, is that once a user finishes entering a note into the memo field on the subform "frmNotes" the can click in a blank area of the parent form and the focus is set on the Salutation field (which is visable), then the user can click on the close button on the main form.
For some reason at times, this just doesn't seem to work. I thought it would be some bad characters in the memo field on the subform "frmNotes", but that doesn't seem to be the case.
Like to see if someone has encountered this error only on occasion and if they might be able to guide me to what I can look at for an intermittent error 2110