access runtime error 3314 Me.Bookmark = rs.Bookmark

Joined
Jun 30, 2012
Messages
1
Reaction score
0
I using combo box to search search number. but it will show this error msg
"access runtime error 3314"

Code:
Private Sub Combo251_AfterUpdate()

' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[Models] = """ & Me![Combo251] & """ "
Me.Bookmark = rs.Bookmark
End Sub
 

Attachments

  • Error code 3314.webp
    Error code 3314.webp
    8.2 KB · Views: 318
Back
Top