CMDIFrameWnd::MDINext
voidMDINext();
Remarks
Activates the child window immediately behind the currently active child window and places the currently active child window behind all other child windows.
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();
}
CMDIFrameWnd Overview | Class Members | Hierarchy Chart
See Also CMDIFrameWnd::MDIActivate, CMDIFrameWnd::MDIGetActive,