The option "Always on Top" does not work as I would like. Is there any way to make the project window always remain above all windows? some kind of Z-Index property ... it happens that I execute a third-party application but this is put on top even if it has selected that always on top option
Announcement
Collapse
No announcement yet.
Some more effective alternative for option "Always on Top"?
Collapse
X
-
What's the code you are using.
I have this on one of my projects and it works pretty well.
Code:-- Sets VeriHash On Top then resets to Not on Top Window.SetOrder(Application.GetWndHandle(), HWND_TOPMOST); Application.Sleep(200); Window.SetOrder(Application.GetWndHandle(), HWND_NOTOPMOST);
- Likes 1
Comment