eAlchemist
Technical User
Can someone tell me why I get run-time error 3027: "Cannot update. Databae or object is read-only." when I run this code:
but this works fine, and it runs off the same tables:
When I run the text export manually, it works fine. Any ideas?
Thanks,
Chris
Code:
DoCmd.TransferText acExportDelim, "Transaction Data Export Specification", _
"qry_TransactionTransformation", strPath & "TransactionTransformation", True
but this works fine, and it runs off the same tables:
Code:
DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel9, _
"Hierarchy_Machines", strPath & "Hierarchy_Machines".
When I run the text export manually, it works fine. Any ideas?
Thanks,
Chris