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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top