This is working fine for me....
With Application.FileDialog(msoFileDialogFolderPicker)
.Show
If .SelectedItems.Count > 0 Then
Path = .SelectedItems.Item(1)
End If
End With
But when the folder picker dialog is displayed, it says "Browse" in the title bar. How do I change the title bar to say something more meaningful, like "Specify the directory for the Output File" ??
TIA
With Application.FileDialog(msoFileDialogFolderPicker)
.Show
If .SelectedItems.Count > 0 Then
Path = .SelectedItems.Item(1)
End If
End With
But when the folder picker dialog is displayed, it says "Browse" in the title bar. How do I change the title bar to say something more meaningful, like "Specify the directory for the Output File" ??
TIA