I need the user to select a destination folder and was thinking about using Application.FileDialog(msoFileDialogFolderPicker). This appears to work, but the buttons along the left & top of the displayed dialog are not active. Is there a way to enable these buttons? If not, what other dialog display options are available from VBA that would allow me to display & use a fully functional select folder dialog?
Here's the basic code I'm using:
Here's the displayed dialog:
Any help is appreciated.
Thanks,
Chris
Here's the basic code I'm using:
Code:
With Application.FileDialog(msoFileDialogFolderPicker)
.Title = "Select Destination Folder for Recipe Export File"
.ButtonName = "Select Folder"
If .Show = True Then
iResp = MsgBox(.SelectedItems(1), vbOKOnly)
End If
End With

Any help is appreciated.
Thanks,
Chris