Click here to Skip to main content
Click here to Skip to main content

How to display the Pick Icon Dialog

By , 12 Jan 2000
 
  • Download demo project - 12 Kb
  • Download source files - 1 Kb

    Sample Image - selecticon.gif

    We all know the Pick Icon common dialog that the Windows shell displays when you choose "Change icon". However, the function to do this is undocumented. This article explains how to use this common dialog.

    You bring up the dialog by calling the function PickIconDlg. This function is exported by ordinal from shell32.dll and has ordinal 62.

    However, the function has one drawback: it has a different signature in Windows NT and Windows 95/98. Therefore, i wrote a wrapper around the function that dynamically binds to shell32.dll and converts arguments when necessary.

    I provided two versions of the wrapper function: a Unicode version and an ANSI version.

    The function returns you the name of a the file that contains the icon and the index of the icon. This is a zero-based index, not a resource id. This means you can extract the icon with the function ExtractIcon.

    The following piece of code (from the accompanying sample project) shows how to call the wrapper function:

    if (::SelectIcon(m_hWnd, m_pszCurrentFile, MAX_PATH, &m_dwCurrentIndex))
    {
        m_hIcon = ::ExtractIcon(::AfxGetInstanceHandle(), 
            m_pszCurrentFile, m_dwCurrentIndex);
        SetIcon(m_hIcon, TRUE);
        SetIcon(m_hIcon, FALSE);
    }
    
  • 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

    Henk Devos
    Web Developer
    Belgium Belgium
    Member
    Henk studied computer science at the University of Ghent, specializing in theoretical computer science.
    He is now working for Artwork Systems, Belgium, and Whirling Dervishes Software, Belgium.
    Henk knows a little something about networking, graphics, object-oriented design, AI, embedded systems. He knows most of the PDF specs by heart.
    Henk developed NSELib, the NameSpace Extension Library.
    You can find his latest freeware software at regxplor.com. It contains a namespace extension that puts the registry in Windows Explorer. The newest commercial project is Alpha ZIP, an explorer-embedded ZIP file utility.

    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

     
    Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
    You must Sign In to use this message board.
    Search this forum  
        Spacing  Noise  Layout  Per page   
    QuestionProblem with PickIconDialog in C# and Windows 2000membernagarsoft19 Nov '05 - 7:43 
    AnswerRe: Problem with PickIconDialog in C# and Windows 2000memberjeremy simmons29 Jan '10 - 6:19 
    GeneralLarge or small icon add to image listmemberTcpip20051 Nov '05 - 14:23 
    GeneralSelectIcon on VB 6.0memberWillian.BR29 Apr '04 - 5:23 
    QuestionHow did you figure out the signature ?memberTom Collins9 Dec '03 - 3:13 
    First I must say great discovery ! Roll eyes | :rolleyes:
     
    As the function is not documented I wonder how you found it and how you figured out the function's declaration.
    Are there any helpfull tools to examine undocumented DLL-funtions ?

     
    TC
    GeneralUndocumented PickIcon dialogmemberArmen Hakobyan12 Mar '02 - 5:44 
    GeneralContextMenu on Network Neighborhood computermembersoma13 Feb '01 - 16:09 
    GeneralRe: ContextMenu on Network Neighborhood computermemberHenk Devos13 Feb '01 - 22:13 
    GeneralRe: ContextMenu on Network Neighborhood computermembersoma14 Feb '01 - 7:51 
    GeneralSaved me a couple hourssussMatt Wigdahl14 Sep '00 - 4:12 

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

    Permalink | Advertise | Privacy | Mobile
    Web02 | 2.6.130523.1 | Last Updated 13 Jan 2000
    Article Copyright 2000 by Henk Devos
    Everything else Copyright © CodeProject, 1999-2013
    Terms of Use
    Layout: fixed | fluid