Changing Desktop Icon Label color [Windows]

Share your advanced PureBasic knowledge/code with the community.
RASHAD
PureBasic Expert
PureBasic Expert
Posts: 4954
Joined: Sun Apr 12, 2009 6:27 am

Changing Desktop Icon Label color [Windows]

Post by RASHAD »

Tested with PB 4.61 x86 Windows 7 x64
Remember to disable F5(Do not refresh Desktop) :mrgreen:

Code: Select all

dWall$ = Space(512)
SystemParametersInfo_(#SPI_GETDESKWALLPAPER, 512, @dWall$, 0)
hwnd = FindWindow_("ProgMan","Program Manager")
hwnd =  GetWindow_(hwnd,#GW_CHILD)
hwnd =  GetWindow_(hwnd,#GW_CHILD)                
SendMessage_(hwnd,#LVM_SETEXTENDEDLISTVIEWSTYLE,0,0)
SendMessage_(hwnd,#LVM_SETEXTENDEDLISTVIEWSTYLE,#LVS_EX_SNAPTOGRID,#LVS_EX_SNAPTOGRID)
SendMessage_(hwnd,#LVM_SETEXTENDEDLISTVIEWSTYLE,#LVS_EX_LABELTIP,#LVS_EX_LABELTIP)
SystemParametersInfo_(#SPI_SETDESKWALLPAPER, 0, Dwall$, #SPIF_UPDATEINIFILE | #SPIF_SENDWININICHANGE)
SetWindowTheme_(hwnd, @null.w, @null.w)
SendMessage_(hwnd,#LVM_SETTEXTCOLOR,#Null,$13F8FD)
InvalidateRect_(hwnd,#Null,#True)

Egypt my love
IdeasVacuum
Always Here
Always Here
Posts: 6426
Joined: Fri Oct 23, 2009 2:33 am
Location: Wales, UK
Contact:

Re: Changing Desktop Icon Label color [Windows]

Post by IdeasVacuum »

Take care, SendMessage_(hwnd,#LVM_SETEXTENDEDLISTVIEWSTYLE,#LVS_EX_SNAPTOGRID,#LVS_EX_SNAPTOGRID) will also re-arrange your icons.
IdeasVacuum
If it sounds simple, you have not grasped the complexity.
RASHAD
PureBasic Expert
PureBasic Expert
Posts: 4954
Joined: Sun Apr 12, 2009 6:27 am

Re: Changing Desktop Icon Label color [Windows]

Post by RASHAD »

It is only for fun :)
Do not take it seriously(Do not mess with Windows)
Egypt my love
User avatar
Kwai chang caine
Always Here
Always Here
Posts: 5494
Joined: Sun Nov 05, 2006 11:42 pm
Location: Lyon - France

Re: Changing Desktop Icon Label color [Windows]

Post by Kwai chang caine »

Waouuuh top cool !!! :D
I have tried all the color of the rainbow and that's works fine on VISTA
I'm happy i have now a multicolor desktop in bulk now :lol: :lol:
Thanks RASHAD for sharing this cool tips 8)
ImageThe happiness is a road...
Not a destination
Post Reply