Combo Box working for one user but not another

  • Thread starter Amy Adams via AccessMonster.com
  • Start date
A

Amy Adams via AccessMonster.com

I am having a combo box problem with my database. Combo box code is simple:

Private Sub Combo40_AfterUpdate()
Dim rs As Object

Set rs = Me.Recordset.Clone
rs.FindFirst "[PlanID] = " & Str(Me![Combo40])
Me.Bookmark = rs.Bookmark
End Sub

This code is working for one user on their computer, but not for another
user on a different terminal. They are both using MS Access 2000. One
user can use the combo box fine, while another user receives this error msg
"Compile Error: Can't find project or library".

I have compiled database and can use combos fine on my computer. Also both
users are working with the most current database.

Any advice?

Thanks!

Amy
 
A

Amy Adams via AccessMonster.com

Eureka! I figured it out. User needed to check the MS DAO 3.6 in the code
window under references/tools.
 

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

Top