Manas Mawroof
Manas Mawroof

Reputation: 1

Converting Visual FoxPro Database

Is it possible for a visual FoxPro Database file to be converted to a FoxPro 2.6 (fpd26) database file?

If possible please tell me how.

Upvotes: 0

Views: 420

Answers (1)

Tamar E. Granor
Tamar E. Granor

Reputation: 3937

If you have Visual FoxPro, you can copy individual tables using the COPY TO command:

USE YourVFPTable
COPY TO YourFP2Table TYPE Fox2X

You have to do each table separately.

Upvotes: 8

Related Questions