A customer had a problem where one of their program’s windows was somehow receiving the WS_EX_TOPMOST extended window style, thereby becoming topmost. The scenario was that they created a popup window with the WS_EX_TOPMOST extended style, and subsequently opened a document window. If they destroyed the popup window before creating the document window, then everything was fine. But if they created the document window before destroying the popup window, then their main app magically gained the WS_EX_TOPMOST extended style. Their investigation revealed that nobody was calling SetWindowLong with GWL_EXSTYLE and WS_EX_TOPMOST.¹ Are there other ways that a window can become topmost?
One way that a window can become topmost is if it is created with the WS_EX_TOPMOST extended style.
Another way that a window can become topmost is if you call SetWindowPos and pass HWND_TOPMOST as the hwndInsertAfter.
Yet another way that a window can become topmost is if you pass a topmost window as the hwndInsertAfter.
Armed with this information, the customer did some more investigation and reported back: They found a call to SetWindowPos that was making the window topmost.
Mystery solved!
¹ Not that anybody should be doing that anyway. The documentation for the WS_EX_TOPMOST extended style says that you shouldn’t be manipulating the extended style bit directly. “To add or remove this style, use the SetWindowPos function.”
0 comments