65.9K
CodeProject is changing. Read more.
Home

How to Show " Pick Icon Dialog "

starIconstarIconstarIcon
emptyStarIcon
starIcon
emptyStarIcon

3.09/5 (11 votes)

Sep 8, 2006

CPOL
viewsIcon

36233

downloadIcon

731

Windows provides a facility to change folders and other icons, by showing this dialog

Sample Image - PickIconDialog.jpg

Introduction

Windows common dialog boxes are really common because just on CodeProject, you can see too many articles on common dialog boxes and about customizing them. But in this article, I am not going to show you a way to show "file open" or "font dialog". But how to show windows "Change Icon Dialog".

How To Show

Showing this dialog box is much easier, just an API away. But this API takes a Unicode string as input and returns results in the same string. So converting from ANSI string to Unicode string and then back to ANSI string is necessary.

My Approach

I just made a simple application which shows how to use this API in a simple way. In my application, the Icon you select from the "Change Icon" Dialog is shown in the dialog box, with the actual path to file which contains selected icon and index of icon in the file.

Actual Work

  • The "Change Icon Dialog" is shown with PickIconDlg() API.
  • The selected icon is shown in my dialog box with ExtractIcon().

History

  • Tuesday 29 August 2006: Minimum working model