Error Msg

A

Al

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
 
K

Klatuu

In your VB Editor, select Toools->References and look for any library
references that say Missing. If you don't find one missing, then you need to
see which library reference is missing and include it.
 
Top