DOC: GetClientRect() May Assert in OLE Controls

Last reviewed: July 31, 1997
Article ID: Q138664
The information in this article applies to:
  • The Microsoft Foundation Classes (MFC) included with: - Microsoft OLE Control Developer's Kit (CDK) versions 1.0, 1.1, 1.2 - Microsoft Visual C++, 32-bit Edition, version 4.0, 4.1, 4.2

SUMMARY

In chapter 4 of the Ole Control Tutorial, the section labeled Setting the CircleOffset Property Step 2, which describes how to implement the InBounds() function, incorrectly calls GetClientRect() and should read as follows instead:

  1. Add the function implementation at the end of your CIRCCTL.CPP file:

          BOOL CCirc2Ctrl::InBounds(short nOffset)
          {
    
             int diameter;
             int length;
             int cx;
             int cy;
    
            // Note that GetControlSize() is called here instead of
            // GetClientRect()
    
             GetControlSize(&cx, &cy);
    
             if (cx > cy)
             {
                length = cx;
                diameter = cy;
             }
             else
             {
                length = cy;
                diameter = cx;
             }
             if (nOffset < 0)
                nOffset = (short) -nOffset;
             return (diameter / 2 + nOffset) <= (length / 2);
          }
    
    
This documentation error was corrected in Visual C++ version 5.0.

MORE INFORMATION

In some control containers (such as Visual Basic and Microsoft Access) in design mode, the control has no window, and therefore no hwnd, so calling GetClientRect(rc) will assert.

There are actually two solutions to this problem. The first solution is documented in the "Summary" section of this article. The second solution is to replace the call to GetClientRect() with a call to GetRectInContainer(), which will obtain the coordinates of the control's rectangle relative to the container. The size of the control can then be calculated from this rectangle.

Technology        : kbMfc kbole
Version           : 1.0 1.1 1.2 4.0 4.1 4.2
Issue type        : kbdocerr
Solution Type     : kbdocfix


================================================================================


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.