会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
涂磊的小作,请赐教
| |
新随笔
|
新文章
| | |
管理
2024年1月5日
DBGrid中插入Edit1(12)
摘要: 因为 引用 CheckBox1不要 双击后,出现 0的Edit显示 所以,去掉 dgEditing DBGrid1.Options:= DBGrid1.Options-[ dgEditing]; 所有DBGrid1的Editor控件,事件 都 要自己写,包括 默认Edit procedure TFo
阅读全文
posted @ 2024-01-05 16:36 涂磊
阅读(28)
评论(0)
推荐(0)
编辑
DBGrid中插入CheckBox1(11)
摘要: procedure TForm13.DBGrid1CellClick(Column: TColumn); begin if (Column.Field.FieldName = 'aboolean') then begin DBGrid1.SelectedField.DataSet.Edit; if
阅读全文
posted @ 2024-01-05 15:37 涂磊
阅读(18)
评论(0)
推荐(0)
编辑
DBGrid中插入ComboBox1(10)
摘要: 根据 DBGrid中插入DateTimePicker(08) 类似 改编 procedure TForm13.ComboBox1Change(Sender: TObject); //ComboBox1 写回 数据库 begin DBGrid1.DataSource.Edit; DBGrid1.Col
阅读全文
posted @ 2024-01-05 11:51 涂磊
阅读(36)
评论(0)
推荐(0)
编辑