分享

Delphi DBGrid双击事件、单元格操作

 360大测试 2016-12-10
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;


    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多