Search Tools Links Login

Rebuilding the windows icon cache


Visual Basic 6, or VB Classic

If you have ever written a program that creates file associations, and has changed the icon associated with these files then this may be of interest. This will tell you how to rebuild the icon cache at runtime, and so display these icons without restarting. I decided to submit this when i tried to find some information on it my self, it took many days of searching to find some very very criptic information on the subject, so i have simplified this and put it up here for you :).

Original Author: Citizen_Suicide

Code

In windows 32bit all icons being used by the shell are stored in memory in what is known as the icon cache. Ussually this only gets rebuilt when the program starts up (although windows does a little bit of cleaning up of un-used icons at run-time) and so therefore any change to the windows registry default icons does nothing until windows has restarted.
Using the technique listed here you should be able to produce code that can force windows to rebuild this icon cache, and therefore display any changes at run-time.
I must stress that this technique is not perfect and can produce some strange results, i've noticed that it can make the little shortcut arrow icon appear as a blank box 'behind' the shortcut icon. It's up to you whether you want to use this code or let the user wait to reboot before they see your changes to thier icons.
Anyway...
As it appears there is no single windows api to achieve this, because of this you have to be a little bit clever :)
To do this you must follow these steps:
(1) Get the value held in "HKEY_CURRENT_USER
Control PanelDesktopWindowMetrics Registry key".
You'll want the value held in "Shell Icon Size" (if this throws up an error try "Shell Icon BPP")
(2) Subtract 0ne from this number
(3) Write the number back to the registry
(4) Call SendMessageTimeout HWND_BROADCAST
(5) Reset the key to its original setting
(6) call SendMessageTimeout HWND_BROADCAST once again
Thats it! Theres plenty of articals and source code on this site to change registry entries just do a quick search.
The *.zip has some of the api declares and some code snippets you may find usefull.

About this post

Posted: 2002-06-01
By: ArchiveBot
Viewed: 134 times

Categories

Visual Basic 6

Attachments

Rebuilding3644011212001.zip
Posted: 9/3/2020 3:45:00 PM
Size: 2,131 bytes


Loading Comments ...

Comments

No comments have been added for this post.

You must be logged in to make a comment.