Tagged Questions
3
votes
3answers
248 views
How does one detect when the wallpaper has changed (Windows XP or greater)?
I have figured out how to change the desktop wallpaper (there are dozens of examples on the Internet.)
One thing that still eludes me: how do I detect when the wallpaper has changed? (Say via the ...
1
vote
1answer
269 views
different wallpaper for each screen for multi-monitor setups in Windows
I'm using
SPI_SETDESKWALLPAPER = 20
ctypes.windll.user32.SystemParametersInfoA(SPI_SETDESKWALLPAPER, 0, "picturefile" , 0)
to change the wallpaper
But I'm wondering if there's any simple ...
0
votes
2answers
805 views
How to write a Windows application to change the desktop wallpaper?
I would like to write a small Windows application which changes the desktop wallpaper based on photographs retrieved from a web service ? How should I go about this ? Which language / technology would ...