View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Javed Javed is offline
external usenet poster
 
Posts: 91
Default Details in dialog_open box

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