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
Dennis - 28 Jun 2007 20:36 GMT
How about telling us the exact error message? It's VERY likely that you have
a missing libbrary reference on the other PCs.
> 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
[quoted text clipped - 15 lines]
> Thank you
> Dyper