Hiyas,
I have two questions about TreeViews.
Firstly, how do I make the background transparent?
Secondly, how do I add one 'tvwChild' to another 'tvwChild', to make the tree 3 levels deep?
Thanks,
-Git
Printable View
Hiyas,
I have two questions about TreeViews.
Firstly, how do I make the background transparent?
Secondly, how do I add one 'tvwChild' to another 'tvwChild', to make the tree 3 levels deep?
Thanks,
-Git
Ok, I figured it out, but now I've got another problem.
I have 3 levels of the tree, the first level which contains 5 sub levels. I want to add nodes to different sub levels, but at the moment it's adding about 20 nodes to one sub level. Where's the variable which indentify's which sub level it goes in ?
Thanks,
-Git
The first two paramters in your Nodes.Add determine the level. Use a number 1-5 as the first parm and the constant tvwChild as your 2nd parm
You can use the key of the node you want to add it under as the forst param.
Treeview1.Nodes.Add "KeyOfParent", tvwChild....