Sir
How to get the dbf table's Field Name and Field Type and Field Size . Please help me by providing a program tips in foxpro to find out name , type,size of each field in a table
For example
I have a table employee having the following field
code c(5)
Name c(10)
dept c(30)
Salary n(10,2)
remark memo(50)
I want to create a duplicate file and to define the field dynamically But if the orginal file have memo field , I have to define as charector field for the seconed file.
After executing the program the seconed file will be created with the following structure
code c(5)
Name c(10)
dept c(30)
Salary n(10,2)
remark c(50)
Please help me
Regards
POL