Can anyone please help!!.
How do you progamatically uncheck a checked node of a treeview control. I tried
node.checked = false
The node simply won't uncheck.
Thanks
Printable View
Can anyone please help!!.
How do you progamatically uncheck a checked node of a treeview control. I tried
node.checked = false
The node simply won't uncheck.
Thanks
Are they boolean, or are they Integers. Try Node.Checked = 0 instead of false.
This is a bug in the control
Microsoft has posted an article explaining how to resolve the problem!
Although this is not the exact behaviour you are reporting, you can see if the work around is suitable for your usage.