Einzelnen Beitrag anzeigen

generic

Registriert seit: 24. Mär 2004
Ort: bei Hannover
2.416 Beiträge
 
Delphi XE5 Professional
 
#6

Re: (VST) VirtualStringTree alle Chilt notes durchlaufen

  Alt 18. Jan 2010, 09:31
der for konstrukt ist nicht notwendig
Zitat von toms:
ungetestet:

Delphi-Quellcode:
    
    if VST.HasChildren[Node] then
    begin
      NextNode := VST.GetFirstChild(Node);
      for i := 1 to Pred(Node.ChildCount) do
      begin
        NextNode := VST.GetNext(NextNode);
      end;
    end;
Delphi-Quellcode:
    
    if VST.HasChildren[Node] then
    begin
      NextNode := VST.GetFirstChild(Node);
      while assigned(NextNode) do
      begin

        NextNode := VST.GetNextSibling(NextNode);
      end;
    end;
Spart zumindest die I Variable.
Coding BOTT - Video Tutorials rund um das Programmieren - https://www.youtube.com/@codingbott
  Mit Zitat antworten Zitat