wdDialogFolderOpen?

A

Aram

Is there such a thing as Dialgs(wdDialogFolderOpen)? I just need the user
to pick a existing directory or be able to create a new directory from a
dialog box.

Thank you.
 
P

Perry

Dim d as filedialog
set d = application.filedialog(4)
d.show

4 = value for office filedialog folderpicker
 
A

Aram Mirzadeh

Thank you very much. I can't believe I didn't find that in the MSDN
pages after a day of searching for every combo that I could think of.

Here are the enums if anyone else is looking:

MsoFileDialogType can be one of these MsoFileDialogType constants.

msoFileDialogFilePicker
msoFileDialogFolderPicker
msoFileDialogOpen
msoFileDialogSaveAs
 
Top