The information in this article applies to:
SYMPTOMSAn access violation occurs when the error event is fired in an OLE Control. This occurs on the first firing of an error event in Release builds and only after several firings in Debug builds. CAUSEAn invalid "this" pointer is being loaded off the stack on a call to ExternalRelease() at the end of COleControl::FireEvent(). STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This bug was corrected in Microsoft Visual C++, 32-bit Edition, version 4.0. MORE INFORMATIONTo reproduce this problem, add the stock Error event to an OLE Control using ClassWizard's OLE Events tab. The name given the member function to fire the event will be FireError. In the OnLButtonDown handler of the OLE Control, call FireError() and pass the following parameters: This causes the SCODE of the error to be 0x800A0007 (CTL_E_OUTOFMEMORY), and the description string to be " ", a single space followed by a NULL byte. The rest of the parameters will be defaults. Now, run the test container, insert your control, and click the control's client area. In Release builds, this causes an access violation on the first occurrence of the event. In Debug, it takes several occurrences before the access violation is seen. Sample CodeBelow is the OnLButtonDown handler for the Circ3 tutorial sample, modified to call the error event.
Additional query words: 2.00 2.10 2.20 3.00 3.10 3.20
Keywords : kbole kbCtrl |
Last Reviewed: July 22, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |