View Full Version : Edit Method; which Reference


bayman
03-11-2003, 11:02 AM
I want to use the Edit Method (rs.edit...rs.update). However, I think I'm missing a reference. Which reference(s) do I need?

Thanks in advance.

bayman
03-11-2003, 11:05 AM
Never mind. I was already using the DAO 3.6 reference. Prioritizing it higher solved the problem.

Pat Hartman
03-11-2003, 05:27 PM
The BEST solution when using DAO in A2K or newer is to qualify all the DAO object names. That way the library priority won't be a problem and MOST IMPORTANTLY, the people who read your code will know that it is DAO rather than ADO.

Dim db As DAO.Database
Dim rst As DAO.Recordset
Dim qdf As DAO.QueryDef
etc.