Results 1 to 4 of 4

Thread: Creating a Treeview

  1. #1

    Thread Starter
    New Member
    Join Date
    Dec 1999
    Posts
    2

    Post

    I am attempting to use a Treeview In my app. Unfortunatly, I havent been able to figure out how to Create a control that is Explorer Style with the computers drives and directories. Can someone please help wit hthis one ?

  2. #2
    Guest

    Post

    If you want to make nodes in the treeview.
    try this code.

    Dim ndsNode As Node

    ' Here your making the first Main Nodes
    Set ndsNode = TreeView.Nodes.Add(, , "MAIN", "Kayoca")

    ' Here your making a child nodes under the Main Node
    Set ndsNode = TreeView.Nodes.Add("MAIN", tvwChild, "CHILD" & A, "This is Fun")

    I hope this is what you mean. ? This code dont place directory into you tree. It's only a sample to make nodes..

  3. #3

    Thread Starter
    New Member
    Join Date
    Dec 1999
    Posts
    2

    Post

    I know how to create nodes, I am curious as how to creats an explorer type treeview that is interactve with the computers directories.

  4. #4
    Guest

    Post

    There are many roads to Rome...

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