Application.FileDialog not available in Outlook?

  • Thread starter Thread starter Mark S.
  • Start date Start date
M

Mark S.

Seems that there is not FileDialog() method available in
Outlook's Application object.

Is there something, like a reference to an object
library, that I need to set?
 
Mark said:
Seems that there is not FileDialog() method available in
Outlook's Application object.

Is there something, like a reference to an object
library, that I need to set?

Get the following sample form and look at the code:

http://www.asaris-matrix.com/sweber/playground/downloads/forms/DispForm.aspx?ID=16

It shows how to reuse Internet Explorer to display an "Open File" dialog.

--
Cheers,

Siegfried Weber

If you want a smart answer, ask a smart question
http://catb.org/~esr/faqs/smart-questions.html

Why tables are bad: http://www.hotdesign.com/seybold/,
http://webdesign.about.com/cs/tables/a/aa020800b.htm

Note: Please do not send any e-mail to my old address
(e-mail address removed) because I am no longer connected with this
organization.
 
Appreciate it. Checked out your website too!

Actually I was planning to use FileDialog() to pick a
folder. It didn't exactly do what I wanted, so I decided
to use the Windows API functions SHBrowseForFolder() and
SHGetPathFromIDList() which displays the 'standard'
folder picker. Exactly what I wanted to do: select a
folder, get the full path.

Thanks again.
 
Back
Top