Microsoft Foundation Classes (mfc.hlp) (Table of Contents; Topic list)
CMDIFrameWnd::Create
CMDIFrameWnd                                Up Contents Index Back
──Microsoft Foundation Classes──────────────────────────────────────────────
 
  BOOL Create( const char FAR* lpClassName, const char FAR* lpWindowName,
               DWORD dwStyle, const RECT& rect, const CWnd* pParentWnd,
               const char FAR* lpMenuName );
 
  Parameter      Description
 
  <lpClassName>  Points to a null-terminated character string that names
                 the Windows class (a WNDCLASS struct). The class name can
                 be any name registered with the afxRegisterWndClass
                 function or any of the predefined control-class names. If
                 NULL, uses the predefined default CMDIFrameWnd
                 attributes.
 
  <lpWindowName> Points to a null-terminated character string that
                 represents the window name. Used as text for the title
                 bar.
 
  <dwStyle>      Specifies the window style attributes.
 
  <rect>         Contains the size and position of the window. The
                 rectDefault value allows Windows to specify the size and
                 position of the new CMDIFrameWnd.
 
  <pParentWnd>   Specifies the parent window of this MDI frame window.
                 This parameter should be NULL for top-level MDI frame
                 windows.
 
  <lpMenuName>   Identifies the name of the menu resource to be used with
                 the window. Use MAKEINTRESOURCE if the menu has an
                 integer ID instead of a string. This parameter can be
                 NULL.
 
  Remarks
 
  Creates the Windows MDI frame window and attaches it to the CMDIFrameWnd
  object.
 
  Return Value
 
  TRUE if successful; otherwise FALSE.
 
  See Also
 
  CMDIFrameWnd::CMDIFrameWnd
 
 
                                     -♦-