B
Bingo
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.
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.