Logo

  DELPHI - FAQ

  Delphi-FAQ | Allgemeine Tipps | Grafik | Datenbanken | VCL | DLL-Programmierung |
 
  Delphi-FAQ | Datenbanken | dBase |
  Datensatz gelöscht?

function isDeleted(dbf :TTable) :boolean;
var  aRecProbs  :RECProps;
begin
 if (dbf.State = dsBrowse) and not dbf.Eof and not dbf.Bof then begin
  Dbf.UpdateCursorPos;
  check(DbiGetRecord(dbf.Handle,dbiNOLOCK,nil,@aRecProbs));
  Result:=aRecProbs.bDeleteFlag;
 end
 else Result:=false;
end;




 26.01.2006 © wlsoft www.wlsoft.de