Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
Info.inc
Package: IE_VB.rar [view]
Upload User: davilee3
Upload Date: 2015-04-22
Package Size: 986k
Code Size: 4k
Category:
Browser Client
Development Platform:
Visual Basic
- //---------------------------------------------------------------------------------------
- // Module : ILEInfo
- // DateTime : 2005-5-13 12:13
- // Author : Lingll
- // Purpose : LE对外提供信息的接口
- //---------------------------------------------------------------------------------------
- interface ILEInfo;
- [
- odl,
- uuid(4FA92263-EC09-4CDB-A3B5-E30722486E7D),
- helpstring("ILEInfo LE对外提供信息的接口")
- ]
- interface ILEInfo : stdole.IDispatch
- {
- //---------------------------------------------------------------------------------------
- // Procedure : GetMainWindowObj
- // DateTime : 2005-5-13 12:13
- // Author : Lingll
- // Purpose : 获取主窗口
- //---------------------------------------------------------------------------------------
- [helpstring("获取主窗口")]
- HRESULT GetMainWindowObj(
- [out, retval] IDispatch **rtn
- );
- //---------------------------------------------------------------------------------------
- // Procedure : GetActiveWindow
- // DateTime : 2005-5-13 12:14
- // Author : Lingll
- // Purpose : 获取当前子窗口
- //---------------------------------------------------------------------------------------
- [helpstring("获取当前子窗口")]
- HRESULT GetActiveWindow(
- [out, retval] IDispatch **rtn
- );
- //---------------------------------------------------------------------------------------
- // Procedure : GetForegroundWebObj
- // DateTime : 2005-5-13 12:16
- // Author : Lingll
- // Purpose : 获取当前webbrowser object
- //---------------------------------------------------------------------------------------
- [helpstring("获取当前webbrowser object")]
- HRESULT GetForegroundWebObj(
- [out, retval] stdole.IUnknown **rtn
- );
- //---------------------------------------------------------------------------------------
- // Procedure : ShowPopupWindow
- // DateTime : 2005-5-18 18:00
- // Author : Lingll
- // Purpose :
- //---------------------------------------------------------------------------------------
- //[helpstring("")]
- HRESULT ShowPopupWindow(
- [in, out] IDispatch **vForm,
- [out, retval] boolean *rtn
- );
- //---------------------------------------------------------------------------------------
- // Procedure : NewWebWindow
- // DateTime : 2005-5-28 12:12
- // Author : Lingll
- // Purpose : 新建浏览窗口
- //---------------------------------------------------------------------------------------
- [helpstring("新建浏览窗口")]
- HRESULT NewWebWindow(
- [in,out, defaultvalue("")] BSTR *vUrl
- );
- //---------------------------------------------------------------------------------------
- // Procedure : CreateLCmnCtrl
- // DateTime : 2005-5-31 00:28
- // Author : Lingll
- // Purpose : 利用le创建windows common control
- //---------------------------------------------------------------------------------------
- [helpstring("利用le创建windows common control")]
- HRESULT CreateLCmnCtrl(
- [in] CmnCtrlType vCtrlType ,
- [out, retval] IDispatch **rtn
- );
- //---------------------------------------------------------------------------------------
- // Procedure : SendMessage
- // DateTime : 2005-8-15 01:27
- // Author : Lingll
- // Purpose : 全能型函数,方便日后扩展
- //---------------------------------------------------------------------------------------
- [helpstring("方便日后扩展")]
- HRESULT SendMessage(
- [in] long uMsg,
- [in] long wParam,
- [in] long lParam,
- [out, retval] long *rtn
- );
- };