IE helper与ie协同工作

所属分类:中间件编程
开发工具:C/C++
文件大小:52KB
下载次数:0
上传日期:2019-04-16 13:33:28
上 传 者孤独的老张
说明:  IE helper与ie协同工作,使ie在使用时更方便,使网上冲浪更轻松
(IE helper works with ie to make IE more convenient to use and make surfing easier)

文件列表:
30.asp.html (13524, 1999-10-26)
browhelp.htm (8445, 1999-10-26)
IEHelper (0, 1999-10-26)
IEHelper.exe (39419, 1999-10-26)
IEHelper\dlldata.c (837, 1997-12-31)
IEHelper\EventsDlg.cpp (1234, 1997-12-31)
IEHelper\EventsDlg.h (807, 1997-10-31)
IEHelper\IEHelper.clw (417, 1997-12-31)
IEHelper\IEHelper.cpp (1896, 1997-10-22)
IEHelper\IEHelper.def (224, 1997-10-22)
IEHelper\IEHelper.dsp (16297, 1997-10-31)
IEHelper\IEHelper.dsw (541, 1997-10-22)
IEHelper\IEHelper.h (5459, 1997-12-31)
IEHelper\IEHelper.idl (751, 1997-10-22)
IEHelper\IEHelper.rc (3677, 1997-10-30)
IEHelper\IEHelperps.def (250, 1997-10-22)
IEHelper\IEHelperps.mk (455, 1997-10-22)
IEHelper\IEHelper_i.c (1079, 1997-12-31)
IEHelper\IEHelper_p.c (4371, 1997-12-31)
IEHelper\IEHlprObj.cpp (8266, 1998-02-20)
IEHelper\IEHlprObj.h (1620, 1998-02-20)
IEHelper\IEHlprObj.rgs (774, 1997-10-24)
IEHelper\resource.h (591, 1997-10-30)
IEHelper\StdAfx.cpp (338, 1997-10-30)
IEHelper\StdAfx.h (944, 1997-10-30)

IEHelper - How to implement a Browser Helper Object --------------------------------------------------- 1. Introduction In order to attach to a running instance of Internet Explorer 4.0 (IE4), An application called a "Browser Helper Object" can be used. This application is a DLL that will attach itself to every instance of IE that is executed on the system. IEHelper demonstrates how to create a Browser Helper Object. When an instance of IE is started, it looks in the registry for CLSIDs stored under the following key: HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects If this key exists and there are CLSIDs listed under this key, IE will use CoCreateInstance() to try to create an instance of each object listed as a subkey under this key. Note that the CLSID of the object you create must be listed as a subkey and not a named value. 2. Restrictions of Browser Helper Objects 1) The application that you create must be an in-proc server (i.e., DLL) 2) This DLL must implement IObjectWithSite. 3) The IObjectWithSite::SetSite() method must be implemented. It is through this method that your application receives a pointer to IE's IUnknown. (IE actually passes a pointer to IWebBrowser2 but the implementation of SetSite() receives a pointer to IUnknown.) You can use this IUnknown pointer to automate IE or to sink events from IE. 3. Using IEHelper To compile and run IEHelper, follow these steps: 1) Compile IEHelper using Visual C++ 5.0 or above. Compiling IEHelper will register the DLL in the registry. The registry script contained in IEHlprObj.rgs will create the necessary registry entries to register IEHelper as an IE4 Browser Helper Object. 2) Each time a new instance of IE4 is started, IEHelper will be loaded. IE will create an instance of each Browser Helper Object listed in the registry every time a new instance of IE is executed. This means that if you have Active Desktop installed, the Browser Helper Objects will be loaded every time you open a folder or change to a new folder as well as when the browser itself is started. 3) View IE4 events in IEHelper's events window. 4) To unregister IEHelper so that it is no longer registered as a Browser Helper Object, run regsvr32 with the following options from the command line: regsvr32 /u IEHelper.dll

近期下载者

相关文件


收藏者