J
Jose Perdigao
I create a recordset:
The recordset comes from view or sp.
dim cn as adodb.connection
dim rc as adodb.recordset
set cn = currentproject.connection
set rc = New adodb.recordset
rc.Open "Select...", cn
Now I would like to get the properties for each field in a recordset (rc)
Basically, if the data type is integer, long, text ect.
Is it possible via vba to get the properties?
thanks
jcp
The recordset comes from view or sp.
dim cn as adodb.connection
dim rc as adodb.recordset
set cn = currentproject.connection
set rc = New adodb.recordset
rc.Open "Select...", cn
Now I would like to get the properties for each field in a recordset (rc)
Basically, if the data type is integer, long, text ect.
Is it possible via vba to get the properties?
thanks
jcp