G
Guest
Can anyone Help... working on a Access DB( Access Ver 2003 11.6355.6408 SP1)
getting error msg can't find project or library. I have a combo box in a form
thats finding a record in the table. The error is pointing to Str
Private Sub Combo161_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[ID Number] = " & Str(Nz(Me![Combo161], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
getting error msg can't find project or library. I have a combo box in a form
thats finding a record in the table. The error is pointing to Str
Private Sub Combo161_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[ID Number] = " & Str(Nz(Me![Combo161], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub