M
Miha Abrahamsberg
Hello!
I'm trying to export some of the linked tables from one MS Access DB to
another MS Access DB.
I use this code (I just want to transfer the structure of the tables and the
tables to be local in the destination DB):
###
DoCmd.TransferDatabase transfertype:=acExport, databasetype:="Microsoft
Access", _
databasename:=dbName, _
objecttype:=acTable, Source:="tblStranka", _
Destination:="tblStranka1", structureonly:=True
###
The result is not what I expect. The table is copied as a linked table
including all the data.
Any suggestions?
Thanks!
Miha
I'm trying to export some of the linked tables from one MS Access DB to
another MS Access DB.
I use this code (I just want to transfer the structure of the tables and the
tables to be local in the destination DB):
###
DoCmd.TransferDatabase transfertype:=acExport, databasetype:="Microsoft
Access", _
databasename:=dbName, _
objecttype:=acTable, Source:="tblStranka", _
Destination:="tblStranka1", structureonly:=True
###
The result is not what I expect. The table is copied as a linked table
including all the data.
Any suggestions?
Thanks!
Miha