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
SideBand.inc
Package: IE_VB.rar [view]
Upload User: davilee3
Upload Date: 2015-04-22
Package Size: 986k
Code Size: 2k
Category:
Browser Client
Development Platform:
Visual Basic
- //---------------------------------------------------------------------------------------
- // Module : ILESideBand
- // DateTime : 2005-5-21 22:20
- // Author : Lingll
- // Purpose : 侧边栏
- //---------------------------------------------------------------------------------------
- interface ILESideBand;
- [
- odl,
- uuid(6C47E7A3-352C-4E94-AF8A-C7B85F8A386E),
- helpstring("侧边栏插件")
- ]
- interface ILESideBand : stdole.IDispatch
- {
- //---------------------------------------------------------------------------------------
- // Procedure : SetSite
- // DateTime : 2005-5-28 12:09
- // Author : Lingll
- // Purpose :
- //---------------------------------------------------------------------------------------
- [helpstring("初始化")]
- HRESULT SetSite(
- [in] long hParent,
- [in] ILEInfo *rtn
- );
- //---------------------------------------------------------------------------------------
- // Procedure : ShowBand
- // DateTime : 2005-5-29 21:18
- // Author : Lingll
- // Purpose : 是否显示band
- //---------------------------------------------------------------------------------------
- [helpstring("是否显示band")]
- HRESULT ShowBand(
- [in] boolean bShow
- );
- //---------------------------------------------------------------------------------------
- // Procedure : Resize
- // DateTime : 2005-5-28 12:10
- // Author : Lingll
- // Purpose :
- //---------------------------------------------------------------------------------------
- HRESULT Resize(
- [in] long x,
- [in] long y,
- [in] long cx,
- [in] long cy
- );
- //---------------------------------------------------------------------------------------
- // Procedure : CloseBand
- // DateTime : 2005-5-28 12:16
- // Author : Lingll
- // Purpose : 关闭(程序退出)
- //---------------------------------------------------------------------------------------
- [helpstring("关闭(程序退出)")]
- HRESULT CloseBand(
- );
- //---------------------------------------------------------------------------------------
- // 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
- );
- };