I have to transfer an old dBAseIV system into access 2013. The command Docmd.Transferdatabase used to work with Access 2010. in access 2013 now it gives an error message sasying dBase IV is not ans installed database type.
Here is the old working code:
Now this code does not work on access 2013. I looked at the MS office site the specs are the same. Help please.
Here is the old working code:
Code:
DoCmd.TransferDatabase transfertype:=acImport, _
databasetype:="dBase IV", _
databasename:=[Forms]![ImPortDbaseIVFm]![dbImPath], _
ObjectType:=acTable, _
Source:=[Forms]![ImPortDbaseIVFm]![dbImSource], _
destination:=Dest, _
structureonly:=False
Now this code does not work on access 2013. I looked at the MS office site the specs are the same. Help please.