FIX: Assertion Failure When Handling xN_SETFOCUS in CFormView

Last reviewed: September 19, 1997
Article ID: Q142274
4.00 WINDOWS NT kbprg kbbuglist kbfixlist

The information in this article applies to:

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

SYMPTOMS

Focus notifications (EN_SETFOCUS, BN_SETFOCUS, and so on) for controls in a CFormView are usually handled in the CFormView class. Calling a function that relies on the window handle of the control (m_hWnd) inside such a handler may cause an assertion failure in Afxwin2.inl. This happens only if the control is the first one in the tab order.

CAUSE

The assertion failure occurs because the focus handler for the control is being called before OnInitialUpdate() is called for the CFormView.

RESOLUTION

To work around this problem, make sure that the m_hWnd member of the control is not NULL before calling any function that relies on it.

STATUS

Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This bug was corrected in Visual C++ 4.1.

Sample Code

The following illustrates calling SetSel in the for an Edit control.

    void CSettestView::OnSetFocusEdit1()
    {
        if(NULL != m_Edit.m_hWnd)
            m_Edit.SetSel( 0,1 );
    }


Additional reference words: 4.00 4.10
KBCategory: kbprg kbbuglist kbfixlist
KBSubcategory: MfcUI vcbuglist400 vcfixlist410
Keywords : MfcUI vcbuglist400 vcfixlist410 kbbuglist kbfixlist kbprg
Technology : kbMfc
Version : 4.00
Platform : NT WINDOWS
Solution Type : kbfix


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: September 19, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.