时间:2021-07-01 10:21:17 帮助过:17人阅读
用DBGridEh吧,只要设置属性alopAppendEh为false即可 最简单将DBGrid的option属性中goEditing设置为false,禁止DBGrid编辑 将datasource指向的table或query改readonly成true void __fastcall TForm1::Table1BeforeInsert(TDataSet *DataSet) { Abort(); } procedure TFormLOrder.DBGridLOrderKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState); begin if (Key = VK_DOWN) or (Key = VK_TAB) then if DBGridLOrder.DataSource.DataSet.RecNo = DBGridLOrder.DataSource.DataSet.RecordCount then Key := 0; end; http://bbs.csdn.net/topics/20441300 移动到最后一条记录时再按一下“下”就会追加一条记录,如果去掉这项功能 procedure TForm1.DataSource1Change(Sender: TObject; Field: TField); begin if TDataSource(Sender).DataSet.Eof then TDataSource(Sender).DataSet.Cancel; end;
如何禁止在DBGRID末位自动添加一行记录
标签:for change hang dbgrideh cal col pap only http