I've been trying to accomplish this (query data into recordset) in ADO but having some problems with certain queries:
This works:
Set cn = CurrentProject.Connection
Set rs = New ADODB.Recordset
Call rs.Open("qryContacts", cn, adOpenStatic)
This doesn't work:
Set cn =...