首页 > 代码库 > Delphi DBGrid双击事件、单元格操作
Delphi DBGrid双击事件、单元格操作
1、得到当前格子中的内容: DBGrid1.Fields[DBGrid1.SelectedIndex].DisplayText; 把DBGrid1.SelectedIndex改为你所希望引用的字段就可以了,如第3个字段。 DBGrid1.Fields[3].DisplayText; 2、双击单元格触发不同事件 procedure TMainFrm.DBGrid1DblClick(sender:TObject); begin if dbgrid1.fields[dbgrid1.selectedIndex].FiledName='GNO' then begin // dbgrid1.selectedIndex ---选中单元格列 //响应事件 end; if dbgrid1.fields[dbgrid1.selectedIndex].FiledName='PSNNAME' then begin //响应事件 end; if dbgrid1.fields[dbgrid1.selectedIndex].FiledName='RCSJ' then begin //响应事件 end; end;
Delphi DBGrid双击事件、单元格操作
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。