Error in coding going from one computer to another.

D

dyper4

I have a database that works great on my laptop where it was created.
I placed it on our server but I am the only one who can access and
work with it. Everyone else gets an error for the String.

Any suggestions? This is the actual error:

Private Sub Combo230_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object

Set rs = Me.Recordset.Clone
rs.FindFirst "[Quality Plan ID] = " & Str(Nz(Me![Combo230], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub

where ther error is at 'Str'.

Thank you
Dyper
 
G

Guest

How about telling us the exact error message? It's VERY likely that you have
a missing libbrary reference on the other PCs.
 

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