jgoodman00
Programmer
- Jan 23, 2001
- 1,510
dim fld as Field 'etc
Set fld = rsQdf.Fields(strFieldName)
Above is the syntax for setting the fld object to a specific field in DAO.
How is this done in using ADO? I have looked at the help file, but it only suggests enumerating through the entire collection of fields in a recordset, which I do not want to do. Instead I want to set the fld object to a specific object...
James Goodman
Set fld = rsQdf.Fields(strFieldName)
Above is the syntax for setting the fld object to a specific field in DAO.
How is this done in using ADO? I have looked at the help file, but it only suggests enumerating through the entire collection of fields in a recordset, which I do not want to do. Instead I want to set the fld object to a specific object...
James Goodman