Hi, you can also get the Broswe for folder using the Shell Object here a example if helps.

VB Code:
  1. Private Sub CmdBrowse_Click()
  2. Dim oShell As Object, oFolder As Object
  3.  
  4.     Set oShell = CreateObject("Shell.Application")
  5.    
  6.     Set oFolder = oShell.BrowseForFolder(0, "Select a folder", 0)
  7.    
  8.     If Not oFolder Is Nothing Then
  9.         MsgBox oFolder.Items.Item.Path
  10.     End If
  11.    
  12.     Set oFolder = Nothing
  13.     Set oShell = Nothing
  14. End Sub