I want a treeview with Nodes that have different text sizes.
How can I do this!!!
Thanks
Printable View
I want a treeview with Nodes that have different text sizes.
How can I do this!!!
Thanks
Hope this is what u wanted .....
TrView is the TreeView Control
Option Explicit
Dim RootNode As Node
Dim ChldNode As Node
Private Sub Form_Load()
Set RootNode = TrView.Nodes.Add(, tvwChild, , "RootNodeOfTree")
Set ChldNode = TrView.Nodes.Add(RootNode, tvwChild, , "First Child of Root Node")
Set ChldNode = TrView.Nodes.Add(RootNode, tvwChild, , "Second Child")
Set ChldNode = TrView.Nodes.Add(RootNode, tvwChild, , "Third Child of Root")
Set ChldNode = TrView.Nodes.Add(RootNode, tvwChild, , "FourthChild")
End Sub
ajitrajput!!
The code you gave me is just for construct the treeview, I want to have Nodes with different text sizes!! How can I change the size of the text that is in a Node??
Thanks
maritxu !!
i am still not getting what u want exactly..
Please explain me ur problem briefly
Crispin!
Thanks I will take a look on these documentation......
Bye