View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
alan alan is offline
external usenet poster
 
Posts: 30
Default FileDialog Folder selection spec

Is there a way to specify a folder spec when invoking the
FileDialog() to select a folder? I want to display
the "new*" folders and let the user select one of them.

For example:

Set fd = Application.FileDialog(msoFileDialogFolderPicker)
fd.Filters.Add xxxxxxxxx

The "fd.Filters.Add" option appears to work only for file
selection.

Is there another folder selector which supports this?

thanks.