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
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