Hi,
In my VB.NET windows app I'm trying to figure out what is needed to make the treeview upside down. The root node needs to be in the lower left corner and expand up and to the right.

Normal TreeView:
-Node1
- -Node2
- - -Node3
- -Node4

What I need:
- -Node4
- - -Node3
- -Node2
-Node1


Does anybody know what I need to do to achieve this?

>Lars<