P
Paul Camilleri
I have a database for church records in Access 2002. It
is set up to run as Access 200 for compatibility with the
church computer. On running the following code:
Private Sub FindBox_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[ParishionerID] = " & Str(Nz(Me!
[FindBox], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
I get an error message "Procedure does not match the
description of events or procedures having the same name."
I have no idea how to get this to work. I would be
grateful for any help
is set up to run as Access 200 for compatibility with the
church computer. On running the following code:
Private Sub FindBox_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[ParishionerID] = " & Str(Nz(Me!
[FindBox], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
I get an error message "Procedure does not match the
description of events or procedures having the same name."
I have no idea how to get this to work. I would be
grateful for any help