Thema
:
Delphi
TVirtualStringTree -> TStringGrid
Einzelnen Beitrag anzeigen
Hawkeye219
Registriert seit: 18. Feb 2006
Ort: Stolberg
2.227 Beiträge
Delphi 2010 Professional
#
2
Re: TVirtualStringTree -> TStringGrid
13. Feb 2009, 20:39
Hallo Heiko,
ich würde so vorgehen:
zusammenfalten
·
markieren
Delphi-Quellcode:
var
Col, Row : Integer;
Node : PVirtualNode;
begin
Grid.RowCount := VST.RootNodeCount + 1;
Grid.ColCount := VST.Header.Columns.Count;
for
Col := 0
to
Grid.ColCount - 1
do
Grid.Cells[Col, 0] := VST.Header.Columns[Col].Text;
Row := 1;
Node := VST.GetFirst;
while
Assigned(Node)
do
begin
for
Col := 0
to
Grid.ColCount -1
do
Grid.Cells[Col, Row] := VST.Text[Node, Col];
Inc (Row);
Node := Node.NextSibling;
end
;
end
;
Gruß Hawkeye
Zitat
Hawkeye219
Öffentliches Profil ansehen
Mehr Beiträge von Hawkeye219 finden