Date: | March 10, 2005 / year-entry #60 |
Tags: | code |
Orig Link: | https://blogs.msdn.microsoft.com/oldnewthing/20050310-00/?p=36233 |
Comments: | 5 |
Summary: | If you pass the SPIF_SENDCHANGE flag to the SystemParametersInfo function, it will broadcast the WM_SETTINGCHANGE message with the wParam equal to the system parameter code you passed. For example, if you call SystemParametersInfo(SPI_SETDOUBLECLICKTIME, 500, 0, SPIF_UPDATEINIFILE | SPIF_SENDCHANGE); then the system will broadcast the message SendMessage(HWND_BROADCAST, WM_SETTINGCHANGE, SPI_SETDOUBLECLICKTIME, 0); If there is a window that... |
If you pass the SystemParametersInfo(SPI_SETDOUBLECLICKTIME, 500, 0, SPIF_UPDATEINIFILE | SPIF_SENDCHANGE); then the system will broadcast the message SendMessage(HWND_BROADCAST, WM_SETTINGCHANGE, SPI_SETDOUBLECLICKTIME, 0); If there is a window that isn't responding to messages, then this broadcast will hang until that unresponsive window finally resumes responding to messages or is killed. If you'd rather not be victimed by unresponsive windows, you have a few options, but it also may affect your program's expectations.
You could issue the With this message, the background thread can notify the main thread when the broadcast finally completes, at which point your program now knows that all windows have received their notifications and are on board with the new setting.
You could issue the DWORD dwResult; SendMessageTimeout(HWND_BROADCAST, WM_SETTINGCHANGE, SPI_SETDOUBLECLICKTIME, 0, SMTO_ABORTIFHUNG | SMTO_NOTIMEOUTIFNOTHUNG, 5000, &dwResult); This does mean that unresponsive windows will not receive the notification that a system parameter has changed. This is acceptable if you decide that your change in settings was minor enough that a program missing the notification is no big deal. In other words, when the unresponsive program finally wakes up, it will not know that the setting has changed since it missed the notification. You can combine the above two methods: Use a background thread and send the message with a timeout.
Perhaps the best technique is to use
the SendNotifyMessage(HWND_BROADCAST, WM_SETTINGCHANGE, SPI_SETDOUBLECLICKTIME, 0); The downside is that you don't know when all windows have finally received and processed the notification. All you know is that someday, they will eventually find out. Usually you don't care about this aspect of the broadcast, so this lack of information is not an impediment. |
Comments (5)
Comments are closed. |
Just curious, what are the functional differences between SendNotifyMessage and PostMessage if it’s not sending to a window created by the calling thread?
I understand that SendNotifyMessage will just call the window procedure for the local thread, does it also skip the message queue for windows in other threads?
I discussed SendNotifyMessage last year. http://weblogs.asp.net/oldnewthing/archive/2004/11/19/266664.aspx
Raymond, on that post you say "Sent messages are not queued. Obviously, I need to dedicate a future entry to explaining the difference between posting and sending messages since people appear not to grasp it."
I noticed this problem with XP – If an application has a modal dialog opened (for example File/Open in Notepad) and I switch the themes from XP to Classic, the application doesn’t update. It stops responding to theme changes until it is closed and restarted. If the application starts in Classic theme, then switching to XP works fine, and all subsequent theme changes too.
Maybe the "Display Properties" box doesn’t notify the applications correctly? Or is it a more generic problem with broadcasted messages and modal message loops?
Raymond: So the answer, then, is "yes." Thanks :)