Does anybody know how to make an external applicatoin's window always stay on top
Does anybody know how to make an external applicatoin's window always stay on top
Author
Message
Jerry P. Li #1 / 2
Does anybody know how to make an external applicatoin's window always stay on top
Hi, there. I have this external app that I need to monitor constantly. However the app does not provide a "window always on top" functionality. Is it possible to write a program to make this application's window stick? Any suggestion would be greatly appreciated!
- J
Wed, 18 Jun 1902 08:00:00 GMT
Alex Clar #2 / 2
Does anybody know how to make an external applicatoin's window always stay on top
You first need to get the handle to the window that you want to remain topmost. Then try calling ShowWindow on it, with the flag set to SW_TOPMOST (I think). That ought to do it.
Quote:
> Hi, there. > I have this external app that I need to monitor constantly. However the app > does not provide a "window always on top" functionality. Is it possible to > write a program to make this application's window stick? > Any suggestion would be greatly appreciated!