Click here to Skip to main content
Licence CPOL
First Posted 8 May 2007
Views 28,725
Downloads 281
Bookmarked 25 times

Files Selection Dialog Box / Tree

By Alaa Jebran | 8 May 2007
A treeview dialog box.
2 votes, 10.5%
1
1 vote, 5.3%
2
1 vote, 5.3%
3
4 votes, 21.1%
4
11 votes, 57.9%
5
4.19/5 - 19 votes
2 removed
μ 3.97, σa 2.40 [?]

Screenshot - Article.gif

Introduction

The problem we need to solve is this: programmers are not allowed to inherit file dialog boxes in VB.NET 2005 and there are two kinds: open and save.

I once made an encryption program that worked like a safe for personal data. In my program, there were buttons named import and export, and I thought it was ugly to use dialogs with buttons whose captions were save, open. Sometimes we need to change button captions in certain situations. This project is good for those who want to design a customized file dialog box. It contains an implementation of three "tree view" file dialog boxes. The first one uses the Microsoft files-folders tools. The second one is a simple dialog that will show a file description of any file you select. The third one is a rich dialog with a progress bar, movable menu, status bar, and multiple view choices: details ,list, large icons ...

Background

A basic knowledge of the language and tree-list view controls.

Using the code

Import all the code files of the dialog you like in your project and just handle the files in the code of the "Proceed" button instead of showing the messagebox. I will not explain everything here, but only the headlines: when you load the form, the program will use Directory.GetLogicalDrives to get all the drives in your computer and will add them in the tree view control. An image list is needed here to set the small icons for the list of drives. Now we will need a procedure to get a level of folders to handle the click on any node (after the select event). This procedure will take the name of the node (the drive or the folder) and will display the children of this node according to the names of the nested folders of the drive or folder, and will display the files in the list view control. Two image lists are needed here because of the two views (large icons, small icons), and you must bind them to the list control. Here are the main procedures:

' this will generate one level of folders in the tree node
' itree is the mother node and path is logical path
' on hard disk that this node stands for.
 
Sub printfilesfolders_here(ByVal path As String, ByRef itree As TreeNode) 
    Dim foldername As String 
    Dim filename As String 
    itree.Nodes.Clear() 
    On Error GoTo eee 

    For Each foldername In Directory.GetDirectories(path)
        ''take the name of folders in the folder or drive
        On Error GoTo eee 
        Dim jj = foldername.LastIndexOf("\") 
        Dim jj1 = foldername.Length - jj 
        'separate the name from the path
        Dim foldr = foldername.Substring((jj + 1), (jj1 - 1))
        itree.Nodes.Add(foldr, foldr) 'add only the name
    Next
    Exit Sub
eee: 
End Sub

'this will display files in the list view according to the path of the mother node

Sub displayfiles(ByVal path As String)
' it uses for each  on Directory.GetFiles 
' to take the pathes of files and then it gets 
' only the names and adds them in the list
' we use AddRange instead of add to gain the details view in the list

Points of Interest

If you shell the dialog after you add a USB flash disk or a new network place, they will not appear, so you need to plan to add a refresh button.

History

  • Last updated: 2-4-2007.

License

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

About the Author

Alaa Jebran

Technical Writer
Code Project
Syrian Arab Republic Syrian Arab Republic

Member
IT degree ,Damascus informatics academy
especiality : AI
Personal Interests: .net programming , DB , image processing and Steganography.
 


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
GeneralNIcely Done Pinmemberapache1o23:48 11 Jun '07  
QuestionI have a private question Pinmembercommandant_.4:40 16 May '07  
Generalyou are extremely bright [modified] Pinmembercommandant_.4:35 16 May '07  
QuestionWhat abt VS 2003 PinmemberPradeep Sen21:11 14 May '07  
AnswerRe: What abt VS 2003 PinmemberAlaa Jebran10:35 15 May '07  
Generalrequest: PinmemberRola saad22:58 8 May '07  
GeneralRe: request: PinmemberAlaa Jebran0:16 9 May '07  
GeneralRe: request: PinmemberAlaa Jebran0:17 9 May '07  
Generalgreat! PinmemberRola saad22:50 8 May '07  
This is great! thank you!
Questionwould you? PinmemberAndromeda ..22:11 8 May '07  
AnswerRe: would you? PinmemberAlaa Jebran0:15 9 May '07  

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.120210.1 | Last Updated 8 May 2007
Article Copyright 2007 by Alaa Jebran
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid