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.JPG
    Error code 3314.JPG
    11.7 KB · Views: 310

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

rs.FindFirst to find last and first name 2
Me.Bookmark = rs.Bookmark 1
Combo Box 2
VB Runtime error 3159 5
Wayne-In-Manchester 12
RunTime Error 3070 8
Combo box help 1
Desparately need help 5

Top