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
"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