function deleteRecord(recno : Integer): Boolean;
The function deleteRecord() physically removes a record from a file.
This operation cannot be undone.
This operation cannot be undone.
begin
// your code
dbf.deleteRecord(10);
dbf.deleteRecord(20);
// your code
end;