Export Table as dBASE IV 
Author Message
 Export Table as dBASE IV

I'm quite new to VBA, but I can't seem to find how to automatically export a
table as a dBase IV format.
What am I missing??
Thanks in advance, have a wonderful Holiday,
Joe


Mon, 11 Jun 2001 03:00:00 GMT  
 Export Table as dBASE IV
Check the help topic for: TransferDatabase Method

 -- Andy

Quote:

>I'm quite new to VBA, but I can't seem to find how to automatically export a
>table as a dBase IV format.
>What am I missing??
>Thanks in advance, have a wonderful Holiday,
>Joe



Tue, 12 Jun 2001 03:00:00 GMT  
 Export Table as dBASE IV
I've looked through the help and can't seem to find how to export to dBaseIV
(as you can in the File Menu export) I'm having no problem with other
formats but the dBase doesn't seem to be there. What am I missing?? Please
provide a few details.
Thanks in advance.
Joe
Quote:

>Check the help topic for: TransferDatabase Method

> -- Andy


>>I'm quite new to VBA, but I can't seem to find how to automatically export
a
>>table as a dBase IV format.
>>What am I missing??
>>Thanks in advance, have a wonderful Holiday,
>>Joe



Tue, 12 Jun 2001 03:00:00 GMT  
 Export Table as dBASE IV
The following line will take the structure and data in a table called
MyTable and export it to dBase IV format in the directory,
"C:\Project", by creating 3 new files: MyTable.dbf, MyTable.mdx and
MyTable.INF. The mdx file is an index file, and the inf file contains
info that Access can use to link to the data, if you need to:

docmd.TransferDatabase _
acExport,"dBase IV","C:\Projects",acTable,"MyTable","MyTable"

 -- Andy

Quote:

>I've looked through the help and can't seem to find how to export to dBaseIV
>(as you can in the File Menu export) I'm having no problem with other
>formats but the dBase doesn't seem to be there. What am I missing?? Please
>provide a few details.
>Thanks in advance.
>Joe

>>Check the help topic for: TransferDatabase Method

>> -- Andy


>>>I'm quite new to VBA, but I can't seem to find how to automatically export
>a
>>>table as a dBase IV format.
>>>What am I missing??
>>>Thanks in advance, have a wonderful Holiday,
>>>Joe



Thu, 14 Jun 2001 03:00:00 GMT  
 
 [ 4 post ] 

 Relevant Pages 

1. dBASE IV table into Access Database table?

2. dBASE IV table into Access Database table?

3. Export to dBase IV problem

4. Import/Export to/from dBase IV looses time in DateTime field

5. creating dBase IV table

6. Problem with linked Codebasic DBASE IV Tables

7. Problem with Dbase IV tables

8. Create Index on Dbase IV Table?

9. Help querrying a DBase IV table

10. diverting dBase IV data writes to dbf files to SQL7 tables

11. Unable to access dBase IV table in VB6

12. Export a table from access as dbase 5 file

 

 
Powered by phpBB® Forum Software