FIX: Closing an ActiveX Control Project Crashes DevStudio

Last reviewed: September 19, 1997
Article ID: Q157893
4.20 WINDOWS NT kbusage kbole kbui kbbuglist kbfixlist

The information in this article applies to:

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

SYMPTOMS

When opening or closing a project in Developer Studio, you may see an access violation with the following error message:

   “MSDEV CAUSED AN INVALID PAGE FAULT IN MODULE
     MSVCRES.DLL at   0137:503126ba.”

This behavior occurs if the Properties window for a ControlWizard- generated ActiveX Control is invoked in the dialog editor.

CAUSE

This is due to a bug in the MFC 4.2 libraries.

RESOLUTION

To obtain this patch, please refer to the following article in the Microsoft Knowledge Base:

   ARTICLE_ID : Q156934
   TITLE      : PATCH: Visual C++ 4.2b Patch

The problem occurs because IOleObject::SetClientSite(NULL) does not release its existing pointer to ambient property interface. For example, COleControl::XOleObject::SetClientSite(NULL) doesn’t call pThis->m_ambientDispDriver.ReleaseDispatch();.

The problem was fixed by adding the following line to COleControl::XOleObject::SetClientSite in the MFC source code:

   // Release existing pointer to ambient property dispinterface.
   pThis->m_ambientDispDriver.ReleaseDispatch();
   if (pClientSite != NULL)

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.2B patch.

MORE INFORMATION

Steps to Reproduce Problem

  1. Create a new ActiveX Control using Control Wizard, and then build the control to register it.

  2. Create a new MFC Control Container application, and insert this OLE control into the About box.

  3. Double-click on the control to bring up the Properties window. Click on any tab of the Properties window.

  4. Close the project workspace, open a new project workspace, or close Developer Studio. Note that Developer Studio crashes with a page fault message.

If you have an existing project that has a Control Wizard-generated control built with Visual C++ 4.2 in a dialog resource, click on the “Control” tab in the Properties window for the control, and then close the project, open a new project, or close Developer Studio.


Additional reference words: 4.20 vcfixlist420 kbdsi
KBCategory: kbusage kbole kbui kbbuglist kbfixlist
KBSubcategory: AppStudioIss CDKIss
Keywords : AppStudioIss CDKIss kbbuglist kbfixlist kbole kbui kbusage
Technology : kbMfc
Version : 4.20
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.