Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Common File Dialog in Thumbnails View

0.00/5 (No votes)
2 Nov 2004 1  
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