Exposing More Recordset Properties

G

Gerard

Hey all,
Is there some way to expose more of the properties for
the recordset that is bound to a form? I.E.

form.recordset.resysnc
form.recordset.recordcount

This is the sort of thing I am looking for, although this
is not the syntax. I just want to be able to use all the
methods/properties of the recordset object that populates
a form. Thanks in advance,

Gerard
 
M

Malcolm Cook

if you want the access editor to know about them (is this what they call
intellisense?), make sure you have a typed ADODB.Recordset

i.e.

dim rs as ADODB.recordset
rs = form.recordset
 
Top