Click here to Skip to main content
Licence 
First Posted 2 Nov 2004
Views 60,432
Bookmarked 21 times

Common File Dialog in Thumbnails View

By | 2 Nov 2004 | Article
An article on how to change File Dialog Initial view.

Introduction

There are all these Image Preview File Dialogs out there. They are all deprecated since Windows 2000 Thumbnails view mode. (My two cents). But how to make the Dialog default to thumbnail view? Or any other view for that matter?

Background

I'm posting this since it is something I needed. The only info I could find after some searching was for VB. Thanks to VBnet. So here is my adoption to C++. I used WTL, but MFC or any other C/C++ could pretty much copy-paste the code from FileDialogEx.H.

Using the code

In ATL/WTL, just include FileDialogEx.H and use the CFileDialogEx class where you used the CFileDialog class before. Note the last added parameter is an enum that states the Initial list view wanted. It defaults to SHVIEW_Default which means don't do anything, just let Windows be. In MFC and other frameworks, you should have the GetOpen/SaveFileDialog hooked, and at the hook routine, override the WM_NOTIFY message. There, do what the CFileDialogEx::OnNotify does. Make sure to chain back to the default processing as to not disrupt the file dialog functionality.

//
// Any Example of an open Handler
//
LRESULT OnOpen(WORD /*wNotifyCode*/, WORD /*wID*/, 
             HWND /*hWndCtl*/, BOOL& /*bHandled*/)
{
    CMyFileDialog fileDlg(
        true ,          // TRUE for FileOpen, FALSE for FileSaveAs
        "*.*" ,         // LPCTSTR lpszDefExt = NULL,
        NULL ,          //,LPCTSTR lpszFileName = NULL,
        0 ,             //dwFlags = OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT,
        "Images\0*.bmp;*.dib;*.jpg;*.gif;*.png;*.ico\0" 
        "All Files\0*.*",//LPCTSTR lpszFilter = NULL,
        m_hWnd ,         //HWND hWndParent = NULL
        SHVIEW_THUMBNAIL // which initial view 
    ) ;

    fileDlg.DoModal() ;
    return 0 ;
}

Points of Interest

The Windows Common File Dialog code does funny things with the Files-List "SHELLDLL_DefView" (OCX). It will destroy and rebuild it multiple times during the life span of the File Dialog. Mainly, the list is not available on the CDN_INITDONE Notify code where it is natural. This is why the code checks any WM_NOTIFY for the presence of the list until found, and then it rests in peace. The WM_COMMAND codes sent to the List are extracted by Spy++ and are magic numbers that could be changed, I guess, in future versions of Windows. Well, I hope MS monitors the CodeProject site and will keep them be.

Finally, this and the previous File Dialog Customization on Code-Project can give a user high degree of control over her/his File Dialog. So next time I see a Paint program with a 64x64 Image preview and defaults to icon view, I'll personally be upset with them. Now they have no good excuse.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Boaz Harrosh



United States United States

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralNot working in Vista PinmemberT800G11:43 13 Aug '08  
QuestionHow to do it with MFC Pinmemberralfsch3:37 7 Jul '08  
QuestionDo it work under XP and Vista Pinmemberralfsch3:36 7 Jul '08  
GeneralOther Sample in MSDN Nov 04 Example PinmemberBrian Lion22:47 12 Dec '05  
Generallast listview's state PinmemberMartial Spirit20:23 1 Jul '05  
GeneralDoesn't work Pinmemberxkret21:58 23 Jan '05  
QuestionStolen? PinmemberCuba23:19 2 Nov '04  
AnswerRe: Stolen? PinmemberBoazHarrosh0:19 11 Nov '04  
AnswerRe: Stolen? PinmemberRancidCrabtree5:46 12 Nov '04  
GeneralRe: Stolen? PinmemberBoazHarrosh20:39 15 Nov '04  
GeneralRe: Stolen? PinmemberRancidCrabtree10:14 16 Nov '04  
GeneralRe: Stolen? PinmemberBoazHarrosh11:16 16 Nov '04  
AnswerRe: Stolen? PinmemberPablo Aliskevicius21:26 13 Nov '04  
AnswerRe: Stolen? Pinmemberarmk6:34 24 Apr '05  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 2 Nov 2004
Article Copyright 2004 by Boaz Harrosh
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid