Windows 7 Remove frame from large icons view mode

CiroConsentino

Honorable Member
Joined
May 5, 2009
Messages
50
hi all,
every time I want to view my icon files (.ico), Windows 7 always draw a frame surround them.
is there a way to remove this frame ?

I'm using Windows 7 Ultimate 32-bit.
Link Removed
 

Solution
There are three options that I know of, "Standard", "Drop Shadow" and "No Border". Each require an edit in the registry.

Standard:-
Code:
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\SystemFileAssociations\image]
"Treatment"=dword:00000002

Drop Shadow:-
Code:
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\SystemFileAssociations\image]
"Treatment"=dword:00000001

No Border:-
Code:
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\SystemFileAssociations\image]
"Treatment"=dword:00000000
no one ? I really hate that frame...
 

There are three options that I know of, "Standard", "Drop Shadow" and "No Border". Each require an edit in the registry.

Standard:-
Code:
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\SystemFileAssociations\image]
"Treatment"=dword:00000002

Drop Shadow:-
Code:
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\SystemFileAssociations\image]
"Treatment"=dword:00000001

No Border:-
Code:
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\SystemFileAssociations\image]
"Treatment"=dword:00000000
 

Solution
It worked! This is exactly what I was looking for. Thank you.
My icons don't have the dreadful frame anymore :)
 

Back
Top