CWindow::BringWindowToTop

Brings the window to the top of the Z order.

BOOL BringWindowToTop( ) throw();

Remarks

See BringWindowToTop in the Windows SDK.

Example

//The following example attaches an HWND to the CWindow object and 
//calls CWindow::BringWindowToTop() to bring the window to the top 
//of the z-order.

CWindow myWindow;
myWindow.Attach(hWnd);
BOOL bOnTop = myWindow.BringWindowToTop();

//check if we could bring the window on top
if(bOnTop)
{
   //Do something
}

Requirements

Header: atlwin.h

See Also

Concepts

CWindow Class

CWindow Members

CWindow::MoveWindow

CWindow::SetWindowPos