DoCmd.TransferDatabase -
06-18-2004
, 01:20 PM
I am trying to Import a simple dbase file into my Ak2 TABLES.
If I do this manually, it works fine. I get a new table called DBASE with
all the data looking good.
If I try and do this using VBA code (see below) I get a path is not valid
for "C:\Databases\dbase.dbf". I know it's valid and have tried putting it on
the C root and still same error message. I am running Wk2 on single
wstation. Any help on this will be much appreciated
D.
----------------------------
DoCmd.TransferDatabase acImport, "dBase III", _
"C:\Databases\dbase.dbf", acTable, "dbasefile", _
"TempFile"
--------------------------- |