Error Msg

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
 
G

Guest

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top