DOCUMENT:Q153677 11-JAN-2001 [vbwin] TITLE :PRB: Implementing Stock Error Event in Custom OLE Control PRODUCT :Microsoft Visual Basic for Windows PROD/VER:WINDOWS:4.0 OPER/SYS: KEYWORDS:kbCtrl kbVBp400 kbGrpDSVB kbDSupport ====================================================================== ------------------------------------------------------------------------------- The information in this article applies to: - Microsoft Visual Basic Standard Edition, 32-bit, for Windows, version 4.0 - Microsoft Visual Basic Professional Edition, 16-bit, for Windows, version 4.0 - Microsoft Visual Basic Professional Edition, 32-bit, for Windows, version 4.0 - Microsoft Visual Basic Enterprise Edition, 16-bit, for Windows, version 4.0 - Microsoft Visual Basic Enterprise Edition, 32-bit, for Windows, version 4.0 ------------------------------------------------------------------------------- SYMPTOMS ======== Visual Basic generates an error message if the MFC Class Wizard's stock Error event is implemented in a custom OLE Control. For example, if you go to the OLE Events tab in the MFC Class Wizard and add the stock Error event, you will get the following definition in the control's ODL file: dispinterface _DTestEvents { properties: // Event interface has no properties methods: // NOTE - ClassWizard will maintain event information here. // Use extreme caution when editing this section. //{{AFX_ODL_EVENT(CTestCtrl) [id(DISPID_ERROREVENT)] void Error(short Number, BSTR* Description, SCODE Scode, BSTR Source, BSTR HelpFile, long HelpContext, boolean* CancelDisplay); . . //}}AFX_ODL_EVENT }; This will generate the following event stub in Visual Basic: Private Sub Test1_Error(Number As Integer, Description As String, _ Scode As Error, Source As String, HelpFile As String, _ HelpContext As Long, CancelDisplay As Boolean) End Sub RESOLUTION ========== To avoid the error generated by Visual Basic, you need to change the event definition of the stock error event in the ODL such that the third parameter is of type long instead of SCODE: [id(DISPID_ERROREVENT)] void Error(short Number, BSTR* Description, long Scode, BSTR Source, BSTR HelpFile, long HelpContext,boolean*CancelDisplay); This will change the third parameter in the Visual Basic event stub from "Scode As Error" to "Scode As Long," and the error will no longer be generated. STATUS ====== This behavior is by design. Additional query words: 4.00 vb4win vb4all vbctrl ====================================================================== Keywords : kbCtrl kbVBp400 kbGrpDSVB kbDSupport Technology : kbVBSearch kbAudDeveloper kbVB400Search kbVB400 kbVB16bitSearch Version : WINDOWS:4.0 Issue type : kbprb ============================================================================= 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. Copyright Microsoft Corporation 2001.