J
JMorrell
I get the "missing operator" syntax error 3077 in the following code for
some records, but not all records in a list box.
Private Sub List11_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[NameOfPublication] = '" & Me![List11] & "'"
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
Is it a data issue or something else?
tia,
some records, but not all records in a list box.
Private Sub List11_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[NameOfPublication] = '" & Me![List11] & "'"
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
Is it a data issue or something else?
tia,