How to Check All ChildNodes when ParentNode is Checked

  • Thread starter Thread starter Pierre
  • Start date Start date
P

Pierre

Hi,
was just wondering how I could set the ParentNode checked value to all its
childNodes (and their childnodes... etc)

Thks for help.
 
Pierre,

If you mean in a tree view, you would have to cycle through all of the
child nodes and select the nodes that were children (of any kind, children
of children, etc, etc).

Hope this helps.
 
thks ^^

Nicholas Paldino said:
Pierre,

If you mean in a tree view, you would have to cycle through all of the
child nodes and select the nodes that were children (of any kind, children
of children, etc, etc).

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Pierre said:
Hi,
was just wondering how I could set the ParentNode checked value to all its
childNodes (and their childnodes... etc)

Thks for help.
 
Back
Top