Why does SystemParametersInfo hang when I pass the SPIF_SENDCHANGE flag?

http://blogs.msdn.com/b/oldnewthing/archive/2005/03/10/392118.aspx

Why does SystemParametersInfo hang when I pass the SPIF_SENDCHANGE flag?

RATE THIS

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 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 SystemParametersInfo call on a background thread. Then your background thread is the one that blocks instead of your UI thread.

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 SystemParametersInfo call without the SPIF_SENDCHANGEflag, then manually broadcast the change via

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 functionAs we learned earlier, the SendNotifyMessage function is like SendMessage except that it doesn't wait for a response. This lets your program get back work while not messing up programs that were momentarily unresponsive when you decided to broadcast the notification.

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.

Blog - Comment List MSDN TechNet
  • #
    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 :)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值