G
Guest
do you have any tool for identify the type mistmatch error
Allen said:It's the 3rd example.
Above your code you have:
Dim rs As Recordset
The DAO and ADO libraries both have a Recordset object, so you need to
disambiguate. Use:
Dim rs As DAO.Recordset
If you use Access 2000 or 2002, and that line now fails with an "unknown
type" error, you need to set a reference to the DAO library. See:
http://allenbrowne.com/ser-38.html
[quoted text clipped - 33 lines]I have a module where I'm trying to update a field in a recordset. I'm
getting the same error when the first line (set