Author: Jonas Bilinkevicius
Is there any way to make a form StayOnTop whitout the little flickering it makes
when switching from fsNormal to fsStayOnTop?
Answer:
It could be done, but requires some code from your side:
1 2 SetWindowPos(MyFormHandle, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE +
3 SWP_NOMOVE + SWP_NOACTIVATE);
I think you have to call this again when your application is restored from minimized state, or after closing a modal form.