Tobasco1136
IS-IT--Management
I don't know anything about VBA, but I am having an issue with the size of my Access DB growing by several megs each time it is accessed. I read an article about trying to recompiling it. I finally figured out how to do that, but I get the following error: "Method or data member not found." Then Access highlights .Recordset. Is there an easy was to fix this?
Private Sub Combo49_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[FileCheckOutID] = " & Str(Nz(Me![Combo49], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
Private Sub Combo49_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[FileCheckOutID] = " & Str(Nz(Me![Combo49], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub