I want to copy the records from a query except for the two first columns. I thought I could use:
But I am not permitted to make updates on this recordset.
NB: I do NOT want to update "myQuery", only "myRst".
Ideas?
- ViAn -
Code:
myRst = myQuery.OpenRecordset(dbOpenDynaset)
myRst.Fields.Delete("MyFirstField")
myRst.Fields.Delete("MySecondField")
But I am not permitted to make updates on this recordset.
NB: I do NOT want to update "myQuery", only "myRst".
Ideas?
- ViAn -