How to make window absolute topmost?

5.2k views Asked by At

I use the SetWindowPos api to make my window topmost with the HWND_TOPMOST param. It works fine, but still tooltips are on top of it.

Example

How to make my window on top of all. Is there an api that I'm missing?

Edit: I fixed it with a timer checking the foreground window and then setting mine to topmost.

1

There are 1 answers

0
Alois Kraus On BEST ANSWER

There is no way to do that, as noted in the Old New Thing blog. TopMost is TopMost. If two windows are competing one must loose. There is no secret MoreTopMost constant.