> As an aside - does Win7 still honour the TOPMOST flag?
> If so, something like this might work:
>
> HWND hw =3D fl_xid(main_win);
> SetWindowPos(hw, HWND_TOPMOST, 0, 0, 0, 0, (SWP_NOMOVE | SWP_NOSIZE |
> SWP_SHOWWINDOW));
>
>
> Then later put it back the way you found it with:
>
> HWND hw =3D fl_xid(main_win);
> SetWindowPos(hw, HWND_NOTOPMOST, 0, 0, 0, 0, (SWP_NOMOVE | SWP_NOSIZE |
> SWP_SHOWWINDOW));

That's the one. Perfect. Thanks.
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

Reply via email to