Does anybody know how a Foxpro file can be exported/converted to
a FilemakerPro 3.0 ( for the Mac ) file without loosing data from
the memo fields in the foxpro file ( .fpt file ) ?
Any suggestions will be appreciated.
Atul Batra
Does anybody know how a Foxpro file can be exported/converted to
a FilemakerPro 3.0 ( for the Mac ) file without loosing data from
the memo fields in the foxpro file ( .fpt file ) ?
Any suggestions will be appreciated.
Atul Batra
Atul,
There is a topic devoted to importing FoxPro files in FileMaker Pro 3.0's
online help. It includes the following outline program which will enable
you to import FoxPro tables (including memo fields) into FMP. It can be
easily adapted to your own needs.
Hope this helps.
Roger
SET TALK OFF
USE <DBF name>
SET ALTERNATE TO Text.txt
SET ALTERNATE ON
DO WHILE .NOT. EOF()
<field 1>
CHR(9)
<field 2>
CHR(9)
<field 3>...
<field N>
CHR(13)
SKIP
ENDDO
SET ALTERNATE OFF
CLOSE ALTERNATE
CLOSE DATABASES
SET TALK ON
> Any suggestions will be appreciated.
> Atul Batra
1. FoxPro to FilemakerPro export
Does anybody know how a Foxpro file can be exported/converted to
a FilemakerPro 3.0 ( for the Mac ) file without loosing data from
the memo fields in the foxpro file ( .fpt file ) ?
Any suggestions will be appreciated.
Atul Batra
2. Update RedHat from 6.1 to 6.2
3. FilemakerPro Clean Export to QuarkXpress
4. Packing Of Paradox Database
6. DTS Export: How to have nulls export as blanks on fixed width export
8. Visual FoxPro exporting to MS SQL
9. exporting SQL 2000 data into FoxPro dbf with DTS (problem with memo field)
10. DTS export to Visual FoxPro
12. Exporting Data in VB 4.0 to a FoxPro 2.6 DBF Format