X xujunjie Unregistered / Unconfirmed GUEST, unregistred user! 2002-06-23 #1 我要在dbgrid的cell中插入一个combobox,作为一个输入框(需要移动),不知道怎样才能取得cell的坐标
Q qdyoung Unregistered / Unconfirmed GUEST, unregistred user! 2002-06-23 #2 devexpress的 TdxGrid实现这个只需要设置属性 ----- http://www.8421.org
M mlzhou Unregistered / Unconfirmed GUEST, unregistred user! 2002-06-23 #3 Tdrawgrid(dbgrid).col; Tdrawgrid(dbgrid).row; 结合来获得定位
G GZCYP Unregistered / Unconfirmed GUEST, unregistred user! 2003-05-08 #5 TDBGrid的祖先类TCustomGrid有一个保护的CellRect函数可获得Cell Rect,所以我们可 自定义一个TMyDBGrid类,继承并公开此CellRect函数,然后在需获得Cell Rect的地方写 如下代码:MyRect := TMyDBGrid(DBGrid1).CellRect(Row, Col);
TDBGrid的祖先类TCustomGrid有一个保护的CellRect函数可获得Cell Rect,所以我们可 自定义一个TMyDBGrid类,继承并公开此CellRect函数,然后在需获得Cell Rect的地方写 如下代码:MyRect := TMyDBGrid(DBGrid1).CellRect(Row, Col);