CMDIFrameWnd::MDINext

Activates the child window immediately behind the currently active child window and places the currently active child window behind all other child windows.

void MDINext( );

Remarks

If the currently active MDI child window is maximized, the member function restores the currently active child and maximizes the newly activated child.

Example

// CMainFrame::OnActivateNextWindow() is a menu command handler for 
// CMainFrame class, which in turn is a CMDIFrameWnd-derived class. 
// It activates the child window immediately behind the currently  
// active child window and places the currently active child window  
// behind all other child windows.  
void CMainFrame::OnActivateNextWindow() 
{
   MDINext();
}

Requirements

Header: afxwin.h

See Also

Reference

CMDIFrameWnd Class

Hierarchy Chart

CMDIFrameWnd::MDIPrev

CMDIFrameWnd::MDIActivate

CMDIFrameWnd::MDIGetActive

WM_MDINEXT