Details in dialog_open box

M

Master Blaster

Hello Everyone,

When I open a file with the use of File_Open or the icon, I would like
to see the detailed view, instead of the default folder view.

Can I accomplish this via a Macro or add-in ?

Thank you in advance,
 
J

Javed

Use of FileDialog object of Application required for this purpose

This object has a property InitialView which can be set to the
following constants

msoFileDialogViewList
msoFileDialogViewThumbnail
msoFileDialogViewDetails

One snippet for reference

With Application.FileDialog(msoFileDialogOpen)
.InitialView = msoFileDialogViewThumbnail
If .Show Then .Execute
End With
 

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