R
RWilly
I'm trying to export tables from my database. Before i split it it worked
fine, using standard TransferDatabase syntax
DoCmd.TransferDatabase transfertype:=acExport, _
databasetype:="Microsoft Access", _
databasename:="destination database with path", _
ObjectType:=acTable, Source:="SourceTableName", _
Destination:="DestinationTableName"
After splitting the databse, it's exporting links, not the actual data. I've
tried, but can't seem to properly reference the back end database table tthat
actually has the data in it. I'd appreciate any suggestions.
fine, using standard TransferDatabase syntax
DoCmd.TransferDatabase transfertype:=acExport, _
databasetype:="Microsoft Access", _
databasename:="destination database with path", _
ObjectType:=acTable, Source:="SourceTableName", _
Destination:="DestinationTableName"
After splitting the databse, it's exporting links, not the actual data. I've
tried, but can't seem to properly reference the back end database table tthat
actually has the data in it. I'd appreciate any suggestions.