export macro

  • Thread starter Thread starter guidop12
  • Start date Start date
G

guidop12

I have design a macro to export a DBF file but I get an error saying the
database name can't be found. Below is the criteria I'm using

Transfer Database
Transfer Type: Export
Database Type: DBaseIII
Database Name:c:\purl\purl.mdb
Object Type: Query
Source: qryexport
Destination: C:\purl\output.dbf

I'm not sure what I'm doing wrong or if it could even be done this way. Any
help will be appreciated.
Pam
 
Pam -

The Database Name only includes the path up to the subdirectory for dBase
files, and the Destination only include the file name, not the path. Try
this:

Transfer Database
Transfer Type: Export
Database Type: DBaseIII
Database Name:c:\purl\
Object Type: Query
Source: qryexport
Destination: output.dbf
 
Back
Top