function getTicks(fieldno : Integer): int64;

The function getTicks() returns content of Date and DateTime field as timestamp in milliseconds since 1970.
Do not forget to call readRecord().


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