CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - ie
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Sub Category
Network Marketing
Management
E-commerce
Business guide
Business plan
Successful incentive
Human Resources
Report papers
Marketing materials
Consulting and training
Website
Software Engineering
File Format
Technology Management
Industry research
Program doc
Other
Search - ie - List
[
Documents
]
网上信息抽取技术纵览
DL : 0
介绍信息抽取领域的发展。第2.1.节比较了信息抽取和信息检索的区别;第2.2.节介绍IE的历史。接下来两节解释评价IE系统的指标和常用的两派技术方法。信息抽取技术所处理的文本类型将在第2.5.节中说明。第2.6.节描述信息抽取技术可利用的网页特征。
Date
: 2009-03-19
Size
: 152kb
User
:
aaaccceee@126.com
[
Documents
]
WebBrowser的8个方法和13个属性
DL : 0
WebBrowser的8个方法和13个属性,以及它们的功能: 方法 说明 GoBack 相当于IE的“后退”按钮,使你在当前历史列表中后退一项 GoForward 相当于IE的“前进”按钮,使你在当前历史列表中前进一项 GoHome 相当于IE的“主页”按钮,连接用户默认的主页 GoSearch 相当于IE的“搜索”按钮,连接用户默认的搜索页面 Navigate 连接到指定的URL Refresh 刷新当前页面 Refresh2 同上,只是可以指定刷新级别,所指定的刷新级别的值来自RefreshConstants枚举表, 该表定义在ExDisp.h中,可以指定的不同值如下: REFRESH_NORMAL 执行简单的刷新,不将HTTP pragma: no-cache头发送给服务器 REFRESH_IFEXPIRED 只有在网页过期后才进行简单的刷新 REFRESH_CONTINUE 仅作内部使用。在MSDN里写着DO NOT USE! 请勿使用 REFRESH_COMPLETELY 将包含pragma: no-cache头的请求发送到服务器 Stop 相当于IE的“停止”按钮,停止当前页面及其内容的载入 属性 说明 Application 如果该对象有效,则返回掌管WebBrowser控件的应用程序实现的自动化对象(IDispatch)。如果在宿主对象中自动化对象无效,这个程序将返回WebBrowser 控件的自动化对象 Parent 返回WebBrowser控件的父自动化对象,通常是一个容器,例如是宿主或IE窗口 Container 返回WebBrowser控件容器的自动化对象。通常该值与Parent属性返回的值相同 Document 为活动的文档返回自动化对象。如果HTML当前正被显示在WebBrowser中,则 Document属性提供对DHTML Object Model的访问途径 TopLevelContainer 返回一个Boolean值,表明IE是否是WebBrowser控件顶层容器,是就返回true Type 返回已被WebBrowser控件加载的对象的类型。例如:如果加载.doc文件,就会返 回Microsoft Word Document Left 返回或设置WebBrowser控件窗口的内部左边与容器窗口左边的距离 Top 返回或设置WebBrowser控件窗口的内部左边与容器窗口顶边的距离 Width 返回或设置WebBrowser窗口的宽度,以像素为单位 Height 返回或设置WebBrowser窗口的高度,以像素为单位 LocationName 返回一个字符串,该字符串包含着WebBrowser当前显示的资源的名称,如果资源 是网页就是网页的标题;如果是文件或文件夹,就是文件或文件夹的名称 LocationURL 返回WebBrowser当前正在显示的资源的URL Busy 返回一个Boolean值,说明WebBrowser当前是否正在加载URL,如果返回true 就可以使用stop方法来撤销正在执行的访问操作 如何利用 WebBrowser 控件,显示 .GIF 动画? 要有一定的网页知识(HTML、JavaScript、CSS) 注意细节: 没有"滚动条"和"鼠标右键弹出的 IE 上下文菜单",".HTM 源文件" ... 我写了一个,效果还真不错! ''Objects: Form1、Command1、CommonDialog1、WebBrowser1 Option Explicit Private Sub Command1_Click() CommonDialog1.ShowOpen If VBA.Len(VBA.Trim(CommonDialog1.FileN欢迎光临学网,点击这里查看更多文章教程 [1] [2] [3] [4] [5] [6] [7] [8] ame)) > 0 Then Dim p As stdole.StdPicture Dim sPath As String sPath = VBA.Trim(VBA.Trim(CommonDialog1.FileName)) Set p = VB.LoadPicture(sPath) WebBrowser1.Width = p.Width * 16 / 26 WebBrowser1.Height = p.Height * 16 / 26 '' WebBrowser1.Navigate "about:blank" WebBrowser1.Document.open WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "WebBrowser1.Document.writeln " WebBrowser1.Document.writeln "WebBrowser1.Document.writeln " " WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" End If End Sub Private Sub Form_Load() Command1.Caption = "&Open" WebBrowser1.Navigate "about:blank" WebBrowser1.Document.open WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.Close End Sub
Date
: 2010-10-05
Size
: 3.9kb
User
:
weidonglingsir@163.com
[
Documents
]
java三种获取mac地址方法
DL : 0
java三种获取mac地址方法: 第一种使用命令跟踪网络信息 第二种使用IE的activeX控件 第三种使用jpcap.jar监听网卡数据包,从数据包解释出mac地址
Date
: 2012-03-12
Size
: 2.97kb
User
:
xinfeng7312
[
Documents
]
HTML标签大全
DL : 0
HTML标记_HTML大全_HTML标记大全_超文本标记语言 网页(WebPage)文件主要是用超文本标记语言(HyperText Markup Language,简称HTML)语句来写成。您可以通过IE浏览器的“查看”菜单中的“源文件”看到该页的HTML代码。HTML语言由一系列元素(element)组成,用于组织文件的内容和指导文件的输出格式。元素名称不分大小写。一个元素可以有多个属性,属性及其属性值不分大小写。属性名=属性值合起来构成一个完整的属性,一个元素可以有多个属性,各个属性用空格分开。元素又由标记(tag)的构成,大多数标记是成对出现的,分起始标记< >(start tag)和结尾标记</ >(end tag),以便和页面的内容区分开来。其写成的文件是标准的ASCII文件,不同于一般的编程语言,故称为脚本(Script)更准确一点。其实也很简单,特别是在专门的HTML编辑器的帮助下,您可以迅速地学会HTML,并能很快写出有自己特色的Homepage来。
Date
: 2012-03-21
Size
: 103kb
User
:
tufangshisi
[
Documents
]
OFDM-basedWirelessBroadBandSystemSimulator
DL : 0
基于OFDM的无线宽带系统仿真It contains mainly two parts, i.e. link-level simulator and system-level simulator. Link-level simulator focus on a single-cell single-user scenario, where signal is transmitted from tx, and estimated at rx. Comparing the difference in tx/rx signal, the error rate can be found out. The output of the link-level simulator is the BLER/BER vs. SNR mapping table, that can be used for the system-level simulation. System-level simulator focus on a multi-cell multi-user scenario. For the sake of simplicity, it takes the mapping table aquired in the link-level simulation, measure the actural SNR, and finds the corresponding error rate.-OFDM-based wireless broadband system simulation It contains mainly two parts, ie link-level simulator and system-level simulator.Link-level simulator focus on a single-cell single-user scenario, where signal is transmitted from tx, and estimated at rx . Comparing the difference in tx/rx signal, the error rate can be found out. The output of the link-level simulator is the BLER/BER vs. SNR mapping table, that can be used for the system-level simulation.System- level simulator focus on a multi-cell multi-user scenario. For the sake of simplicity, it takes the mapping table aquired in the link-level simulation, measure the actural SNR, and finds the corresponding error rate.
Date
: 2026-01-08
Size
: 250kb
User
:
zhangli
[
Documents
]
IE_skill
DL : 0
与IE相关的一些技巧,包括:删除流氓网站、使用PING判断TCPIP故障、解决网页中不显示动态图片问题、刻爱人的名字在IE上等内容。-IE associated with a number of techniques, including: delete rogue Web site, use PING to determine TCPIP failure to resolve the page does not display the dynamic picture issues, wife
Date
: 2026-01-08
Size
: 4kb
User
:
wl
[
Documents
]
IECache_src
DL : 0
用来清理ie缓存的,rundll32 -u -p 等方式不好用,根据弹出的对话框可以选择清理缓存,比如cookie, ie cache url history等-Ie used to clear the cache, rundll32-u-p not to use such means, according to the pop-up dialog box can choose to clear the cache, such as cookie, ie cache url history, etc.
Date
: 2026-01-08
Size
: 4kb
User
:
张大啥
[
Documents
]
JavaScript
DL : 0
JavaScript 颜色梯度和渐变效果。关于颜色的效果一般就两个,颜色梯度变化和样式的颜色渐变,前者在ie中一般用滤镜实现。-JavaScript color gradient and the gradient effect. General effect on the color of the two, the color change and style gradient color transitions, ie in the former tends to be used in the filter realization.
Date
: 2026-01-08
Size
: 3kb
User
:
释然123
[
Documents
]
Setup
DL : 0
its GSD toolbars setup for IE.
Date
: 2026-01-08
Size
: 740kb
User
:
jankidave
[
Documents
]
developing-addons.php_files
DL : 0
how to develop ie add-ons in .net using VC++.
Date
: 2026-01-08
Size
: 660kb
User
:
jankidave
[
Documents
]
History
DL : 0
c#开发的操作ie的程序,适合初学者学习参考-c# development of procedures for the operation ie, suitable for beginners to learn information
Date
: 2026-01-08
Size
: 198kb
User
:
fengson
[
Documents
]
book
DL : 0
网络书城 功能介绍: ◆多用户管理分权限发布、管理书籍资料。 大类小类两级无限制软件分类、无限制添加书籍资料。 资料批量删除、批量分类转移等批量管理功能。 采用交互性的订单处理方式客户管理功能。 会员制度,分VIP会员和一般会员,并提供不同的优惠书 评论管理功能。 完善而方便的书籍资料添加、编辑表单,无组件图片上传。强大的搜索功能,可以按各个字段进行不同方式的高级搜索。 付款方式管理 ...... ◆本程序是目前网上最好的网上书店免费程序,整个网站结构清晰,界面简单但功能强大,没有多余的代码和文件,非常适合二次开发。 1. 运行环境:MS WINDOWS NT PACK 4 OR LATER /WIN2000 WITH IIS 4.0 或更高版本 /WIN9X+PWS 2. 数 据 库:Access2000、Access2002 3. 其 他:服务器必须安装 微软IE浏览器5.0+、IIS 推荐:Windows 2000 + IIS5.0 + Access2000 + IE6.0 环境测试 /login.asp admin /admin -Windows 2000+ IIS5.0+ Access2000+ IE6.0 /login.asp admin /admin
Date
: 2026-01-08
Size
: 497kb
User
:
zibeike2004
[
Documents
]
NewMicrosoftWord2
DL : 0
1. oncontextmenu="window.event.returnValue=false" 将彻底屏蔽鼠标右键 <table border oncontextmenu=return(false)><td>no</table> 可用于Table 2. <body onselectstart="return false"> 取消选取、防止复制 3. onpaste="return false" 不准粘贴 4. oncopy="return false " oncut="return false " 防止复制 5. <link rel="Shortcut Icon" href="favicon.ico"> IE地址栏前换成自己的图标 -1. Oncontextmenu = " window.event.returnValue = false" will completely shield Right <table border oncontextmenu=return(false)><td> no </table> Can be used in Table 2. <body onselectstart="return false"> Deselect to prevent replication 3. Onpaste = " return false" are not allowed to paste 4. Oncopy = " return false " oncut = " return false " to prevent the replication 5. <link rel="Shortcut Icon" href="favicon.ico"> IE address bar, replace their icons before
Date
: 2026-01-08
Size
: 14kb
User
:
2010ds
[
Documents
]
NewMicrosoftWord3
DL : 0
1. 将彻底屏蔽鼠标右键 oncontextmenu="window.event.returnValue=false"<table border oncontextmenu=return(false)> <td> no</table> 可用于Table function click() { if (event.button==2) { alert( 对不起,本页禁用右键! ) } } document.onmousedown=click 2.取消选取、防止复制 <body onselectstart="return false"> 3. 不准粘贴 onpaste="return false" 4.防止复制 oncopy="return false " oncut="return false " 5.IE地址栏前换成自己的图标 <link rel="Shortcut Icon" href="favicon.ico"> -1. Would completely shield right oncontextmenu = " window.event.returnValue = false" <table border oncontextmenu=return(false)><td> no </table> For Table function click () (if (event.button == 2) (alert (' Sorry, this page to disable right!' ))) Document.onmousedown = click 2. Deselect to prevent copying <body onselectstart="return false"> 3. Not allowed to paste onpaste = " return false" 4. To prevent the replication oncopy = " return false " oncut = " return false " 5.IE address bar replace their icons before <link rel="Shortcut Icon" href="favicon.ico">
Date
: 2026-01-08
Size
: 8kb
User
:
2010ds
[
Documents
]
C
DL : 0
.请编写函数fun,该函数的功能是:实现B=A+A ,即把矩阵A加上A的转置,存放在矩阵B中。计算结果在main函数中输出-. Please write the function fun, the function of the functions are: to achieve B = A+ A ' , ie the matrix A with A, transpose, stored in the matrix B,. The results in the main function output
Date
: 2026-01-08
Size
: 650kb
User
:
林静
[
Documents
]
Face--Recognition
DL : 0
Classical IE paper on face recognition, brother to write our laboratory, is very good, write is very good
Date
: 2026-01-08
Size
: 3.37mb
User
:
王胜
[
Documents
]
S-function-to-Simulink
DL : 0
S-函数是System function 系统函数的简称,是指采用非图形化(即计算机语言,而非Simulink 系统模块)的方式描述的功能模块。在MATLAB 中,用户除了可以使用MATLAB 代码编写S-函数以外,还 可以使用C、C++、FORTRAN 或Ada 语言编写S-函数,只不过用这些语言编写程序时需要用编译器生成 动态连接库(DLL)文件,然后在Simulink 中直接调用-S-function System Function system function, refers to the use of non-graphical (ie computer language, rather than the Simulink system module) way described functional modules. In MATLAB, the user can use MATLAB code to write the S-function outside can use C, C++, FORTRAN or Ada language preparation of the S-function, only in these languages to write programs need to use the compiler to generate dynamic link library (DLL ) file, and then called directly in Simulink
Date
: 2026-01-08
Size
: 344kb
User
:
任宁
[
Documents
]
ie
DL : 0
有关ie的了解,针对一些集合的使用和了解,关于map的如何循环使用等-this is a project by sth,just look at
Date
: 2026-01-08
Size
: 5kb
User
:
lily
[
Documents
]
1111系统IE维护易语言源码
DL : 0
System IE maintenance easy language source routine program combined with easy language extension interface support library, call API function maintenance system IE settings
Date
: 2026-01-08
Size
: 129kb
User
:
ffffff23123131
[
Documents
]
参考
DL : 1
代码实现cclink——ie的连接与发送接收,经过自己改版,由VB转成c#(The code realizes the connection, sending and receiving of cclink-ie. After self-modification, it is converted from VB to c.#)
Date
: 2026-01-08
Size
: 1.06mb
User
:
Sun_Walker
«
1
2
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.