1

I can use "FlashWindowEx" to make a window flash in the taskbar, but what can I call to determine if that has been done to a window? Is there a flag that gets set somewhere that I can query?

Jon Tackabury
  • 47,710
  • 52
  • 130
  • 168

1 Answers1

1

It's seems that such thing is not possible. However, there may be workarounds. For example, you may keep a boolean variable "flash = false". Then set it to "true" when you call FlashWindowEx and set to "false" in the situations in which applications typically gain focus.

References:

http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1846008&SiteID=1

luiscubal
  • 24,773
  • 9
  • 57
  • 83