naygl
Registered User.
- Local time
- Tomorrow, 10:46
- Joined
- Jan 7, 2002
- Messages
- 58
Win98 doesn't like my db
My Access 2000 db is playing up on computers that have windows 98 installed. Combo boxes are not able to find records. In the after update event I have code like this:
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[JobID] = " & str(Me![CmbJobID])
Me.Bookmark = rs.Bookmark
It works fine on the Win2000 computers. I think it has to do with the references (i.e DAO) but I'm not sure. I can't check it myself as the network is at the other end of the country so I would appreciate some ideas that I could pass on.
My Access 2000 db is playing up on computers that have windows 98 installed. Combo boxes are not able to find records. In the after update event I have code like this:
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[JobID] = " & str(Me![CmbJobID])
Me.Bookmark = rs.Bookmark
It works fine on the Win2000 computers. I think it has to do with the references (i.e DAO) but I'm not sure. I can't check it myself as the network is at the other end of the country so I would appreciate some ideas that I could pass on.
Last edited: