Click here to Skip to main content
Licence CPOL
First Posted 18 Dec 2011
Views 5,271
Downloads 1,435
Bookmarked 15 times

TreeView Explorer using VB.NET 2008

By | 18 Dec 2011 | Article
TreeView Explorer using VB.NET 2008
MBExplorerTest.gif

Introduction

What is the MBTreeViewExplorer? This is a simple TreeView derived control which uses the Windows Explorer interface. It provides no added functionality aside from the standard TreeView control methods, properties, and events, however it does provide a Shell Item class, which can be used to extend this basic example for your own needs, and it is also a good starting point for those wanting to get to grips with the system image list and Shell32 programming.

Background

MBTreeViewExplorer is an explorer which inherits all the properties of simple TreeView control. The language used is VB.NET. Parts of the code are based on other CodeProject tutorials and code samples found elsewhere on the Internet. All of the code was written by me but some of the concepts are from other references and books.

What I think is best about this program:

  1. It is a simple design, which should help you to learn how to use the TreeView control.
  2. Compared with many of the other sample or demo programs available, it loads directories fast!
  3. The program only loads the necessary folders.
  4. Here are only two events, and one method which drives the MBTreeViewExplorer control.

Code

MBExploreControl.gif

The concept for this MBTreeViewExplorer came from the Windows Explorer. MBTreeViewExplorer consists of four classes, ShellAPI, Shell Item, ShellDLL and SystemImageList. I organized methods of MBTreeViewExplorer into layers like this:

The following method loads all Folder Nodes for MBTreeViewExplorer:

Private Sub LoadNodes()
       'Set Treeview Image List for MBTreeViewExplorer
        SystemImageList.SetTreeViewImageList(MBTreeView, False)
        'New ShellItem to Load Desktop
        Dim m_shDesktop As ShellItem = New ShellItem()
        Dim tvwRoot As TreeNode = New TreeNode()
        tvwRoot.Name = m_shDesktop.Path
        tvwRoot.Text = m_shDesktop.DisplayName
        tvwRoot.ImageIndex = m_shDesktop.IconIndexNormal
        tvwRoot.SelectedImageIndex = m_shDesktop.IconIndexOpen
        tvwRoot.Tag = m_shDesktop

        Dim arrChildren As ArrayList = m_shDesktop.GetAllDirectories
        For Each shChild As ShellItem In arrChildren
            Dim tvwChild As TreeNode = New TreeNode()
            tvwChild.Name = shChild.Path
            tvwChild.Text = shChild.DisplayName
            tvwChild.ImageIndex = shChild.IconIndexNormal
            tvwChild.SelectedImageIndex = shChild.IconIndexOpen
            tvwChild.Tag = shChild
            If shChild.IsFolder And shChild.HasSubFolders Then tvwChild.Nodes.Add("PH")
            tvwRoot.Nodes.Add(tvwChild)
        Next
        MBTreeView.Nodes.Clear()
        MBTreeView.Nodes.Add(tvwRoot)
        tvwRoot.Expand() End Sub

The following method handles Icons for MBTreeViewExplorer:

Public Shared Sub SetTreeViewImageList( _
        ByVal treeView As TreeView, _
        ByVal forStateImages As Boolean)
        Initializer()
        Dim wParam As Integer = LVSIL_NORMAL
        If forStateImages Then
            wParam = LVSIL_STATE
        End If
        Dim HR As Integer
        HR = SendMessage(treeView.Handle, _
                    TVM_SETIMAGELIST, _
                    wParam, _
                    m_smImgList)
End Sub

Using the Code

MBExploreToolBox.gif

It is very easy to use the MBTreeViewExplorer in your application. Simply add the reference of the provided DLL to your application and just drag and drop.

History

  • MBTreeViewExplorer Version 1.0

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Manoj K Bhoir

Software Developer

India India

Member

Google+
Manoj Bhoir is Working as a Software Developer and Interested in Computer Programming.He is currently working on VB.Net and C#.Net

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questionhow getting files in the selected node? PinmemberAlterDiaz0:49 22 Apr '12  
GeneralMy vote of 5 PinmemberАslam Iqbal17:25 10 Mar '12  
GeneralRe: My vote of 5 PinmemberManoj K Bhoir1:35 27 Mar '12  
Questionhow to retrive full path Pinmemberkrruertyret2:36 4 Feb '12  
QuestionPirate Copy of Ra-One PinmemberIrwan Hassan16:05 19 Dec '11  
AnswerRe: Pirate Copy of Ra-One PinmemberManoj K Bhoir20:07 30 Dec '11  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 18 Dec 2011
Article Copyright 2011 by Manoj K Bhoir
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid