Einzelnen Beitrag anzeigen

Benutzerbild von s.h.a.r.k
s.h.a.r.k

Registriert seit: 26. Mai 2004
3.159 Beiträge
 
#5

Re: virtual treeview: node.parent ist niemals nil

  Alt 2. Jan 2010, 11:30
@mirage228: du hast recht

Folgender Code schreibt the p-p-p-p-arent in die Titelleiste. Ich habe die neuste Version installiert.
Delphi-Quellcode:
var
  vn : PVirtualNode;
  pn : PVirtualNode;
begin
  VirtualStringTree1.RootNodeCount := 10;

  vn := VirtualStringTree1.GetFirst();
  pn := vn.Parent;

  if (not Assigned(pn)) then Caption := 'Nüx'
  else if (pn = VirtualStringTree1.RootNode) then Caption := 'the p-p-p-p-arent'
  else Caption := 'strange';
end;
»Remember, the future maintainer is the person you should be writing code for, not the compiler.« (Nick Hodges)
  Mit Zitat antworten Zitat