11.26. Window Manipulation

11.26.1. How do I make a window stay on top of the others?

SetWindowPos(&wndTopMost, NULL, NULL, NULL, NULL, SWP_NOMOVE | SWP_NOSIZE)

(like DBWIN does)

lee@usa.nai.net, via mfc-l, 1/19/95

11.26.2. How do I make a window move in front of another?

Call either:

SetWindowPos(&wndTop, NULL, NULL, NULL, NULL, SWP_NOMOVE | SWP_NOSIZE)

Or

BringWindowToFront();

lee@usa.nai.net, via mfc-l, 1/19/95