In ADO recordsets have a property called .DefinedSize which returns the defined size of a field in a table. Does DAO have something equivalent to this?
Printable View
In ADO recordsets have a property called .DefinedSize which returns the defined size of a field in a table. Does DAO have something equivalent to this?
Try Recordset.Fields(Index).FieldSize
I believe this will work for DAO.
I believe it's size, not fieldsize:Quote:
Originally posted by parksie
Try Recordset.Fields(Index).FieldSize
I believe this will work for DAO.
Recordset.Fields(index).size but it looks as though either will work.
[Edited by JHausmann on 08-17-2000 at 02:08 PM]
Hmm. More Microsoft redundancy? There must be *some* difference between them.