I thought so, and wanted to double check in Help and here's the first line:
"Returns or sets the ADO Recordset or DAO Recordset object representing the
record source for the specified form, report, list box control, or combo box
control. Read/write"
I think that the recordset is ADO if you are using SQL data, and DAO if you
are using Jet data - though according to the help - it would appear that you
could have an ADO recordset when using Jet. The details on this are a bit
vague.
--
Sandra Daigle
[Microsoft Access MVP]
For the benefit of others please post all replies to this newsgroup.
Ken said:
Aren't form recordsets in DAO format, not ADODB?
Sandra Daigle said:
Hi Bingo,
Try using a DAO recordset instead - I'm not certain why an ADO recordset
won't work - I think it should but I can't get it to work either.
dim rs as DAO.recordset
You also have to make sure that you have a reference set to DAO for this
to work.
--
Sandra Daigle
[Microsoft Access MVP]
For the benefit of others please post all replies to this newsgroup.
I'm getting this repeatedly:
dim rs as ADODB.recordset
set rs = me.recordset
I get a 'type mismatch'
I can get aaround it by
dim rs as Object
set rs=me.recordset
But WHY do I need to do this?
I'm using an access database, the "as installed" references,
standard "as installed" VBA, etc.