Has anyone had success with the tvm_sortchildren message working recursively? MSDN says it will but I can't get it to work.
It says to use the following in message:
I've used
All three sort the first level of children under a parent. The 2nd /3rd do not sort the children at any other level - which I thought would work.
It says to use the following in message:
fRecurse Value that specifies whether the sorting is recursive. Set fRecurse to TRUE to sort all levels of child items below the parent item. Otherwise, only the parent's immediate children are sorted.
Code:
SendMessage hTreeview, %tvm_sortchildren, 0, hNode SendMessage hTreeview, %tvm_sortchildren, 1, hNode SendMessage hTreeview, %tvm_sortchildren, -1, hNode
Comment