Попробовал написать программку переключения между окнами, но нужно чтобы моё окно было всегда сверху. Какие способы бывают, подскажите пожалуйста.
void CTopDlgDemoDlg::StayOnTop() const { CRect rect; // get the current window size and position GetWindowRect( rect ); // now change the size, position, and Z order // of the window. ::SetWindowPos(m_hWnd , // handle to window HWND_TOPMOST, // placement-order handle rect.left, // horizontal position rect.top, // vertical position rect.Width(), // width rect.Height(), // height SWP_SHOWWINDOW // window-positioning options); } http://www.codeguru.com/code/legacy/dialog/TopDlg_demo.zip