Sorting Nodes on a TreeView

  • Thread starter Thread starter David C. Holley
  • Start date Start date
D

David C. Holley

If I set the .Sorted property for a treeView to TRUE and then add a new
node, with the new node automatically be placed in the correct sort order?
 
no, it will be placed at a place you insert it <g>
but after you add node, you can set sorted property of parent node to true,
and this will resort nodes
 
Yeah I figured it out and then canceled the message. Now I'm playing
with adding nodes to a specific node to allow various actions. I'm using
a TreeView to display active invoices. When a specific invoice is
clicked, I'm adding various child nodes to the invoice to allow various
actions such as Printing, Posting, etc. Its pretty sweet.
 
Back
Top