Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

How To Enable ActiveX Control Event Handling on a Web Page


View products that this article applies to.

Summary

An ActiveX control must implement the IProvideClassInfo or IProvideClassInfo2 interface to enable event handling on a Web page. Microsoft Internet Explorer uses this interface to obtain the type library for the control and determine the available event set.

↑ Back to the top


More Information

Using a script language, such as VBScript or JavaScript, a Web page author can use automation to invoke methods/properties and handle events for an ActiveX control placed on the page with an HTML <OBJECT> tag.

For an ActiveX control to support such event handling, it must implement the IProvideClassInfo or IProvideClassInfo2 interface. Internet Explorer queries the control for these interfaces and, if implemented, calls the GetClassInfo() method to obtain the type library for the control. Internet Explorer will initially query the control for IProvideClassInfo2 and, if this is not implemented, will then query for IProvideClassInfo.


The IProvideClassInfo2 interface is derived from IProvideClassInfo and provides an additional method, GetGUID(), which returns an object's outgoing interface ID for it's default event set.


For ActiveX controls developed using the Microsoft Foundation Classes, the IProvideClassInfo2 interface is implemented by default.


For ActiveX controls developed using Microsoft Visual Basic, the IProvideClassInfo interface is implemented by default.


When using the Microsoft Active Template Library (ATL), version 3.0, the following 'lite control' ATL objects do not implement the IProvideClassInfo2 interface by default:
  • Simple Object
  • Internet Explorer Object
  • Lite Control
  • Lite Composite Control
  • Lite HTML Control
You can easily add support for event handling by implementing the IProvideClassInfo interfaces. This is done by deriving your control from the default ATL implementation, IProvideClassInfo2Impl.


  1. Add the following line to your class derivation list:
       public IProvideClassInfo2Impl<&CLSID_<object_name>, NULL,
    &LIBID_<project_name>Lib>
  2. Add the following lines to your COM_MAP:
       COM_INTERFACE_ENTRY(IProvideClassInfo)
    COM_INTERFACE_ENTRY(IProvideClassInfo2)

↑ Back to the top


References

For more information about the Active Template Library and implementing ActiveX controls, please consult the Microsoft Visual C++ Online documentation.

For more information about developing Web-based solutions for Microsoft Internet Explorer, visit the following Microsoft Web sites:(c) Microsoft Corporation 1999, All Rights Reserved. Contributions by Mark Davis, Microsoft Corporation.

↑ Back to the top


Keywords: kbactivexevents, kbctrlcreate, kbdsupport, kbfaq, kbhowto, kbinetdev, kb

↑ Back to the top

Article Info
Article ID : 200839
Revision : 4
Created on : 8/1/2019
Published on : 8/1/2019
Exists online : False
Views : 194