SitesMasstec
Programmer
Hello colleagues!
I have a free VFP9 table with client records (CLIENTS.DBF) (containing names, their addresses, etc).
1) Can I merge these data in other software which uses ODBC to link with my table? How to do this?
OR
2) What about if I convert the VFP9 free table (CLIENTS.DBF) into another dBase III standard table (CLIENTS2.DBF)?
I will put in my VFP application the command:
I think this will be a clear approach for users (There will be a button "Transform clients records into standard dBaseIII file")
What do you think about these 2 options?
Thank you,
SitesMasstec
I have a free VFP9 table with client records (CLIENTS.DBF) (containing names, their addresses, etc).
1) Can I merge these data in other software which uses ODBC to link with my table? How to do this?
OR
2) What about if I convert the VFP9 free table (CLIENTS.DBF) into another dBase III standard table (CLIENTS2.DBF)?
I will put in my VFP application the command:
Code:
USE CLIENTS
COPY TO CLIENTS2 FIELDS EXCEPT COBS2 FOX2X
* COBS2 is a Memo field
I think this will be a clear approach for users (There will be a button "Transform clients records into standard dBaseIII file")
What do you think about these 2 options?
Thank you,
SitesMasstec