how to disable a tree node's checkbox from being modified (altered in state) by the user?
I want them to be able to use the checkboxes but for surtain ones I would like to "lock" out
vb question
i don't have a lot of experience with tree nodes and stuff in VB, but given what methods usually have to be taken toward this sort of issue, why not just wait for your listtree_change / listtree_click / listtree_focus / whatever, and check if the values of the ones you don't want changed, have changed. if so, reset them.
shouldn't be too hard
shouldn't be too hard

k I found a way around it, I just set the tag of that node to something like: "not editable" and on" node_check" event I check it and just set it back to it's original value after the user changes it.
But it wouldn't work because apparently the tree would do some preliminary stuff even after the event so I have to trick it with a timer...blah blah blah... anyway thanx for the help
But it wouldn't work because apparently the tree would do some preliminary stuff even after the event so I have to trick it with a timer...blah blah blah... anyway thanx for the help