Error in coding going from one computer to another.

  • Thread starter Thread starter dyper4
  • Start date Start date
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
 
How about telling us the exact error message? It's VERY likely that you have
a missing libbrary reference on the other PCs.
 
Back
Top