M mmb Active member Joined Aug 1, 2004 Messages 42 Programming Experience 1-3 Oct 11, 2004 #1 I want to know the whether the selected node is the LEAF (have no childs) or not in the TREE VIEW. or in other words How to check whether the selected item in the TREEVIEW has futher childs or not ? NEED HELP PLS
I want to know the whether the selected node is the LEAF (have no childs) or not in the TREE VIEW. or in other words How to check whether the selected item in the TREEVIEW has futher childs or not ? NEED HELP PLS
Paszt Staff member Joined Jun 3, 2004 Messages 1,500 Location Raleigh, NC - USA Programming Experience Beginner Oct 12, 2004 #2 Check the Count property of the Nodes collection for the given node. For example: nd.Nodes.Count where nd is the given node. Upvote 0 Downvote
Check the Count property of the Nodes collection for the given node. For example: nd.Nodes.Count where nd is the given node.