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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top