I am using the DoCmd.CopyObject to copy queries from one database to another.
My current database is empty and I want to populate it with queries from another database. I have a listing of queries in the other database. This is my copy syntax that is not working:
DoCmd.CopyObject , "[qryInfo]", acQuery, "[C:\Temp\Old.mdb]![qryInfo]"
Is there a way to make this work? Or is there another way?
TIA,
GGleason