> I have write a program whch fatches records from various DBFs into an array on my given condition is thier any way to make a DBF of that array exactly same structure and data.
> Can any one help me out on this
>
> Najeeb
INSERT INTO MyTable FROM ARRAY aArray
INSERT INTO MyCursor FROM ARRAY aArray
This way you don't need to open the DBF file first, or see if it is open already, or check where you are and SELECT TheCursor, and then maybe move back to the original workarea, saving several lines of code.
-Anders