G Guest Jun 1, 2006 #1 Another Treeview query: How do I refresh a Node's list of items? (probably the selected one) Cheers, Steve.
Another Treeview query: How do I refresh a Node's list of items? (probably the selected one) Cheers, Steve.
A Alex Dybenko Jun 2, 2006 #2 Hi, you have to clear nodes and then fill again -- Best regards, ___________ Alex Dybenko (MVP) http://alexdyb.blogspot.com http://www.PointLtd.com
Hi, you have to clear nodes and then fill again -- Best regards, ___________ Alex Dybenko (MVP) http://alexdyb.blogspot.com http://www.PointLtd.com
A Alex Dybenko Jun 2, 2006 #4 Say you have a proc to load your treeview called LoadTree, which you call on forms load event and oTV is a reference to Treeview control object to refresh whole tree you have to run: oTV.Nodes.Clear LoadTree for refresh children of one node - delete all of them and then add again -- Best regards, ___________ Alex Dybenko (MVP) http://alexdyb.blogspot.com http://www.PointLtd.com
Say you have a proc to load your treeview called LoadTree, which you call on forms load event and oTV is a reference to Treeview control object to refresh whole tree you have to run: oTV.Nodes.Clear LoadTree for refresh children of one node - delete all of them and then add again -- Best regards, ___________ Alex Dybenko (MVP) http://alexdyb.blogspot.com http://www.PointLtd.com