D
Daniel
I can copy allright a file from floppy to HDD. Here is the
code:
Sourcefile="a:\jml.dbf"
DestFile="d:\boulot\access\srf\jml.dbf"
file copy sourcefile, destfile
But when I want to import the copied file, using the
following code:
SourceFile="d:\boulot\access\srf\jml.dbf"
DoCmd.TransferDatabase acImport,"dbase IV", Sourcefile,
acTable, "srf.mdb", "imported_jml"
I get the following error number 3044 corresponding
to "d:\boulot\access\srf\jml.dbf" is not a valid path.
How come ??? Help from my fellow programmers is much
needed.
Thanks... Daniel
code:
Sourcefile="a:\jml.dbf"
DestFile="d:\boulot\access\srf\jml.dbf"
file copy sourcefile, destfile
But when I want to import the copied file, using the
following code:
SourceFile="d:\boulot\access\srf\jml.dbf"
DoCmd.TransferDatabase acImport,"dbase IV", Sourcefile,
acTable, "srf.mdb", "imported_jml"
I get the following error number 3044 corresponding
to "d:\boulot\access\srf\jml.dbf" is not a valid path.
How come ??? Help from my fellow programmers is much
needed.
Thanks... Daniel