I have a form with a combo box that is used to lookup names. After looking up several names in a row and sometimes editing their other fields on the form, I get a run-time error 2105 error saying I can't go to the specified record, I may be at the end of a recordset. I have the code below on the On Change, On Exit and On Dblclick properties of the combo box. Why do I get the run-time error?
Private Sub Combo138_Change()
Me.RecordsetClone.FindFirst "[ID] = " & Me![Combo138]
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
Thanks--
jgarnick
jgarnick@aol.com
Private Sub Combo138_Change()
Me.RecordsetClone.FindFirst "[ID] = " & Me![Combo138]
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
Thanks--
jgarnick
jgarnick@aol.com