Exposing More Recordset Properties

  • Thread starter Thread starter Gerard
  • Start date Start date
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
 
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
 
Back
Top