The SetForegroundWindow function puts the thread that created the specified window into the foreground and activates the window. Keyboard input is directed to the window, and various visual cues are changed for the user. The system assigns a slightly higher priority to the thread that created the foreground window than it does to other threads.
Syntax
BOOL SetForegroundWindow(HWND hWnd);
я думал - по своему действию очень похоже на system modal окна, (только не те , которые вызвались DoModal , а те, которые созданы через Create) - окно всегда висит поверх всех окон. Но нет, не пойму, что делает?