728x90
반응형
델파이 퀀텀트리리스트 TcxDbTreeList 멀티셀렉트 데이터 키값가져오기
procedure TForm1.Button1Click(Sender: TObject);
Var i: integer;
begin
for I := 0 to cxDBTreeList1.SelectionCount - 1 do
Memo1.lines.add(TcxDBTreeListNode(cxDBTreeList1.Selections[i]).KeyValue);
end;
procedure TForm1.Button1Click(Sender: TObject);
Var i: integer;
begin
cxDBTreeList1.DataController.BeginUpdate;
try
for I := 0 to cxDBTreeList1.SelectionCount - 1 do
Memo1.lines.add(TcxDBTreeListNode(cxDBTreeList1.Selections[i]).KeyValue);
finally
cxDBTreeList1.DataController.EndUpdate;
end;
end;
728x90
반응형
'Delphi Tip > 그리드' 카테고리의 다른 글
Delphi 스트링그리드(StringGrid) 정렬 (0) | 2021.09.03 |
---|---|
델파이 Tcxgrid 선택한 값 가져오기 (0) | 2021.09.01 |
델파이 퀀텀그리드 Excel출력하기 (0) | 2021.08.31 |
델파이 TcxDBTreeList 북마크 Bookmarks 사용하기 (0) | 2021.08.27 |
delphi tadvcolumngrid fixedcolor (0) | 2021.08.25 |
댓글