|
-
Dec 4th, 2000, 07:37 PM
#1
I want a treeview with Nodes that have different text sizes.
How can I do this!!!
Thanks
-
Dec 5th, 2000, 05:38 AM
#2
Is this what u want ???
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
-
Dec 5th, 2000, 05:58 AM
#3
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
-
Dec 5th, 2000, 07:00 AM
#4
????
maritxu !!
i am still not getting what u want exactly..
Please explain me ur problem briefly
-
Dec 5th, 2000, 03:57 PM
#5
Crispin!
Thanks I will take a look on these documentation......
Bye
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|