function getString(fieldno : Integer): String;
The function getString() returns content of any field as a string value or NULL.
If a field is a binary memo, you need another function: getMemoBuf().
Do not forget to call readRecord().
begin
// your code
dbf.readRecord( row );
writeln( dbf.getString( 0 ) );
// your code
end;