How can I check if a other application's window is set to be "Always on Top" or not? I guess I need to get the InsertAfter property but I have no idea how.
Printable View
How can I check if a other application's window is set to be "Always on Top" or not? I guess I need to get the InsertAfter property but I have no idea how.
A top-most window has the WS_EX_TOPMOST extended style, so try calling GetWindowLong on this window, and checking for that extended style
Thanks, that'll help