procedure TfrmstPostImageCollate.LoadCollateImage(AOrderID: integer);var mySql: string; node: TcxTreeListNode; cPhoto, cFullPhoto: string;begin ...
分类:
其他好文 时间:
2015-12-16 17:13:47
阅读次数:
228
TcxImageComboBoxProperties(MID_Comp.Properties).Items.Clear;这样就可以使用属性了。if lstPaper.FocusedNode.Values[mSelected.ItemIndex] = TcxCheckBoxProperties(...
分类:
其他好文 时间:
2015-09-08 19:54:48
阅读次数:
821
如果控制单元格变颜色,只需要把注释的放开就可以了, 也就是判断当前列,是否是你想让变颜色的列。 如果想整行变颜色, 则只需要注释下面的就可以了。procedure TfrmwpOrderSendingSet.grdDataCustomDrawCell(Sender: TObject; ACanvas...
分类:
其他好文 时间:
2015-09-08 12:19:58
阅读次数:
619
procedure Tfrmaaa.grd1Editing(Sender: TObject; AColumn: TcxTreeListColumn; var Allow: Boolean);begin //在此控制是否能够编辑 //if not Assigned(grd1.FocusedNod...
分类:
其他好文 时间:
2014-10-27 19:05:15
阅读次数:
500
if not Assigned(cxDBTreeList1.FocusedNode) then Exit;
// 上移方法:
with cxDBTreeList1 do
FocusedNode.MoveTo(FocusedNode.getPrevSibling, tlamInsert);
// 下移方法:
with cxDBTreeList1 do...
分类:
其他好文 时间:
2014-07-29 14:55:18
阅读次数:
218