Visual Studio 2010 - Visual C++
CWnd::GetNextWindow
Searches for the next (or previous) window in the window manager's list.
CWnd* GetNextWindow( UINT nFlag = GW_HWNDNEXT ) const;
Parameters
Return Value
Identifies the next (or the previous) window in the window manager's list if the member function is successful.
The returned pointer may be temporary and should not be stored for later use.
Remarks
The window manager's list contains entries for all top-level windows, their associated child windows, and the child windows of any child windows.
If CWnd is a top-level window, the function searches for the next (or previous) top-level window; if CWnd is a child window, the function searches for the next (or previous) child window.
Requirements
Header: afxwin.h
See Also