This should help:
Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click With FolderBrowserDialog1 .Description = "Select your folder" .RootFolder = Environment.SpecialFolder.MyDocuments .ShowNewFolderButton = True If .ShowDialog() = Windows.Forms.DialogResult.OK Then MsgBox(.SelectedPath) End If End With End Sub
Comment