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
Collin
[sig][/sig]