Private Function Check(ByVal mytreeNode As TreeNodeCollection) As Boolean
For Each node As TreeNode In mytreeNode
If node.ChildNodes.Count > 0 Then
If node.Checked = True Then
For Each chknode As TreeNode In node.ChildNodes
chknode.Checked = True
Next
End If
Check(node.ChildNodes)
Next
End Function
Using this function i can check child node when checking parent.I want to do opposite.Once i uncheck parent child also gets uncheck.It is possible using this same function.?