> Hi. Can anyone help me, please? I have accidentally deleted records from my DBF file while
> coding the program for my project. The CDX file remains intact as it was not opened during
> program testing. Please help me recreate records from my CDX file back to DBF file.
>
> this is my sample command which did the damage:
>
> use File1.dbf
> If file('file2.dbf)
> use file1 ***---> THIS IS SUPPOSEDLY File2.dbf
> zap ***---> which resulted in my loss of records...
> else
> copy structure to file2.dbf
> use file2
> endif
>
> append from File1.dbf for trandate>ctod('01/01/2008')
> .
> .
> .
> * * * *
>
> Thanks a lot.
>
> Rolly
ANSWER IS NO
just check for file1.bak if that file is there open it like use file1.bak so might be few records are there.
CDX IS JUST HAVING THE INFO OF RECORDS NOT RECORDS. So u cant make data from cdx file.
Anil