function readRecord(recno : Integer): Boolean;
Function readRecord() reads a record to internal memory block.
After reading you can use functions getString(), getValue(), getDateTime(), getTicks(), getMemoBuf()
begin
// your code
for row := 0 to dbf.recCount()-1 do
begin
dbf.readRecord( row );
// your code
end;
end;