I hope this helps alittle, when you make a Command in the DE, The DE automaticaly makes a variable with the same name as the Command prefixed with "rs".
So for example, if you have a Command named Table, DE will make a variable named rsTable which represents the recordset returned by the Command "Table".
But, to anwser your question
Dim rs as AODB.Recordset
myDe.Table 'Execute the Command "Table"
Set rs = myDE.rsTable 'Now you can use rs in place of rsTable
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.