Results 1 to 5 of 5

Thread: Nodes that have different text sizes

  1. #1
    Guest

    Unhappy

    I want a treeview with Nodes that have different text sizes.
    How can I do this!!!
    Thanks

  2. #2
    Guest

    Question 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

  3. #3
    Guest

    Unhappy

    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

  4. #4
    Guest

    Exclamation ????

    maritxu !!

    i am still not getting what u want exactly..
    Please explain me ur problem briefly





  5. #5
    Guest
    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
  •  



Click Here to Expand Forum to Full Width