BrowseForFolder

From scripting
Revision as of 04:58, 22 April 2017 by Nickpisca (talk | contribs) (Created page with " Dim FolderName As String Dim RootPath FolderName = GetFolderName("Select a folder") If FolderName = "" Then MsgBox "You didn't select a folder." Else Root...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Dim FolderName As String
Dim RootPath
FolderName = GetFolderName("Select a folder")
If FolderName = "" Then
    MsgBox "You didn't select a folder."
Else
    RootPath = FolderName & "\"
    TextBoxSavePath.Value = RootPath
    'MsgBox "You selected this folder: " & RootPath
End If