function getValue(fieldno : Integer): double;

The function getValue() returns content of any numeric field as a double value.
Do not forget to call readRecord().


begin
    // your code
    dbf.readRecord( row );
    writeln( intToStr(dbf.getValue( 0 )) );
    // your code
end;