Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools


Click here to copy the following block
' a class to display the BrowseForFolders dialog
' usage:
'  Dim diag As New BrowseForFoldersDialog()
'  diag.Description = "Select a directory"
'  If diag.ShowDialog() = DialogResult.OK Then
'   ' the user selected this directory
'   directory = diag.Path
'  End If
'
' IMPORTANT: requires a reference to the System.Design.Dll assembly

Class BrowseForFoldersDialog
  ' the Description that appears in the dialog
  Dim m_Description As String

  Property Description() As String
    Get
      Return m_Description
    End Get
    Set(ByVal Value As String)
      m_Description = Value
    End Set
  End Property

  ' the path returned by the dialog
  Dim m_Path As String

  Property Path() As String
    Get
      Return m_Path
    End Get
    Set(ByVal Value As String)
      m_Path = Value
    End Set
  End Property

  ' the ShowDialog method
  Function ShowDialog() As System.Windows.Forms.DialogResult
    Dim fb As New FolderBrowser(Me)
    Return fb.ShowDialog()
  End Function

  ' an inner private class that inherits from a .NET Framework class
  ' we need this class because we want to access protected members
  Private Class FolderBrowser
    Inherits System.Windows.Forms.Design.FolderNameEditor

    Dim parent As BrowseForFoldersDialog

    ' store a reference to the outer object, so that its
    ' private properties can be accessed
    Sub New(ByVal parent As BrowseForFoldersDialog)
      Me.parent = parent
    End Sub

    ' show the dialog
    Function ShowDialog() As System.Windows.Forms.DialogResult
      Dim fb As New _
        System.Windows.Forms.Design.FolderNameEditor.FolderBrowser()
      fb.Description = parent.m_Description
      ShowDialog = fb.ShowDialog()
      If ShowDialog = Windows.Forms.DialogResult.OK Then
        parent.m_Path = fb.DirectoryPath
      End If
    End Function
  End Class

End Class


Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.