How can I export a single table as a dBase 5 file through VBA?
Currently I am using this VBA code:
DoCmd.TransferDatabase _
acExport, _
"dBase IV", _
"DB_Total", _
acTable, _
"DB_Total", _
"C:\Data", _
False
But when I try to execute this code, I get the following error (in dutch, so roughly translated):
"DB_Total is not a valid path"
But I'm not really sure what the path is, because the table I am trying to export is inside the Access file, right?
DoCmd.TransferDatabase _ acExport, _ "dBase IV", _ "C:\Data", _ acTable, _ "DB_Total", _ "DB_Total", _ FalseSee msdn.microsoft.com/en-us/library/office/ff196455.aspx - Fionnuala