DbGridEH 点击空白处自动新增记录

procedure TForm1.DBGridEh1CellMouseClick(Grid: TCustomGridEh;
  Cell: TGridCoord; Button: TMouseButton; Shift: TShiftState; X,
  Y: Integer);
begin
  if  cell.Y = (self.ADODataSet1.Recordset.RecordCount+1) then
    if (self.ADODataSet1.State = dsbrowse) then
       self.ADODataSet1.Append;
end;

原文地址:https://www.cnblogs.com/zhusd/p/1830706.html