Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
How can I have my application always in top
what about, SetWindowPos(hWndApplication, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
modified on Tuesday, March 4, 2008 6:59 AM
Or create window with WS_EX_TOPMOST extended style. You can change position after window is created only using Rajkumar'a approach.
JohnCz MS C++ MVP