PRB: Resizing CPropertySheet in OnInitDialog Does Not Work

Last reviewed: July 31, 1997
Article ID: Q140585
4.00       | 4.00
WINDOWS NT | WINDOWS kbprg kbprb kbcode

The information in this article applies to:

  • The Microsoft Foundation Classes (MFC) included with: Microsoft Visual C++, 32-bit Edition, version 4.0

SYMPTOMS

If you create a class derived from CPropertySheet and use ClassWizard to add a handler for OnInitDialog(), the TODO comment will be added before the call to CPropertySheet::OnInitDialog(). If you replace the comment with calls to MoveWindow() or SetWindowPos() to resize the sheet, this will not work. Also, GetWindowRect() or GetClientRect() will not return the correct information if called before OnInitDialog().

This is the code generated by ClassWizard:

   BOOL CMySheet::OnInitDialog()
   {
      // TODO: Add your specialized code here and/or call the base class
      return CPropertySheet::OnInitDialog();
   }

CAUSE

CPropertySheet::OnInitDialog causes the CPropertySheet to resize. Therefore, any call to MoveWindow() or SetWindowPos() has no effect if it comes before CPropertySheet::OnInitDialog().

RESOLUTION

Call CPropertySheet::OnInitDialog() first, before resizing the sheet, as in the following code.

Sample Code

// This code shows how to resize a modeless CPropertySheet and
// add a button.

// CMySheet is derived from CPropertySheet
BOOL CMySheet::OnInitDialog() {
          CPropertySheet::OnInitDialog();

          RECT rc;
          GetWindowRect (&rc);
          // Increase the height of the CPropertySheet by 30
          rc.bottom += 30;
          // Increase the width of CPropertySheet by 50
          rc.right +=50;
          // Resize the CPropertySheet
          MoveWindow (rc.left, rc.top, rc.right-rc.left, rc.bottom-rc.top);

          // Convert to client coordinates
          ScreenToClient (&rc);
          // m_Button is of type CButton and is a member of CMySheet
          m_Button.Create ("&MyButton", WS_CHILD | WS_VISIBLE | WS_TABSTOP,
             CRect (5, rc.bottom-30, 80, rc.bottom-5), this, IDC_MYBUTTON);
          return TRUE;
}

STATUS

This behavior is by design.


Additional reference words: 4.00 Windows 95
KBCategory: kbprg kbprb kbcode
KBSubcategory: MfcUI
Keywords : MfcUI kbcode kbprb kbprg
Technology : kbMfc
Version : 4.00 | 4.00
Platform : NT WINDOWS


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: July 31, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.