CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - Webbrowser vb
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - Webbrowser vb - List
[
Multimedia program
]
WebBrowser
DL : 0
利用几个VB控件制作简易浏览器-use several VB Control producing a simplified browser
Update
: 2008-10-13
Size
: 3.19kb
Publisher
:
孤独剑
[
Button control
]
使用WebBrowser控件浏览网页
DL : 1
用vb实现使用WebBrowser控件浏览网页,一个经典例子极具参考价值-achieve with vb use WebBrowser Control Web site, a classic example of great reference value
Update
: 2008-10-13
Size
: 2.49kb
Publisher
:
马超
[
GUI Develop
]
Example100-使用WebBrowser控件浏览网页
DL : 0
用VB编辑的可以当浏览器使用的程序 经测试,可以使用-VB editor when the browser can be used by the testing procedure can be used
Update
: 2008-10-13
Size
: 6.52kb
Publisher
:
文芳
[
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
Update
: 2010-10-05
Size
: 3.9kb
Publisher
:
weidonglingsir@163.com
[
Internet-Network
]
HTMLViewerSample
DL : 0
This sample will show you how to use the WebBrowser Control and how to disable right click context menu for browser s window. Requires installed Internet Explorer 3.xx or Internet Explorer 4.xx. Works with both versions. This sample works with All version of VB5.
Update
: 2025-02-17
Size
: 84kb
Publisher
:
wwww
[
Button control
]
使用WebBrowser控件浏览网页
DL : 0
用vb实现使用WebBrowser控件浏览网页,一个经典例子极具参考价值-achieve with vb use WebBrowser Control Web site, a classic example of great reference value
Update
: 2025-02-17
Size
: 2kb
Publisher
:
马超
[
GUI Develop
]
Example100-使用WebBrowser控件浏览网页
DL : 0
用VB编辑的可以当浏览器使用的程序 经测试,可以使用-VB editor when the browser can be used by the testing procedure can be used
Update
: 2025-02-17
Size
: 6kb
Publisher
:
文芳
[
Proxy Server
]
webbrowser_proxy
DL : 0
WebBrowser做流畅览器,设置代理服务器网问VB源代码-WebBrowser so fluent browser, set up the proxy server network asked VB source code
Update
: 2025-02-17
Size
: 12kb
Publisher
:
周红
[
Internet-Network
]
123752545
DL : 0
用VB编写的WEB服务器,带有文件上传和自动更新功能-VB prepared by the Web server, with the file upload and automatic update function
Update
: 2025-02-17
Size
: 104kb
Publisher
:
[
Internet-Network
]
VB_WEB
DL : 0
获取VB中WebBrowser跳转后的网址-VB WebBrowser access the website Jump
Update
: 2025-02-17
Size
: 2kb
Publisher
:
fj
[
Internet-Network
]
vb_autoweb
DL : 0
自动填写WebBrowser的广西框例子-automatically fill in the Guangxi frame WebBrowser example
Update
: 2025-02-17
Size
: 15kb
Publisher
:
fj
[
Other
]
WebBrowserTricks
DL : 0
vb代码 网络网页浏览,另存 和其它IE功能-vb code Web browsing, and other IE save function
Update
: 2025-02-17
Size
: 19kb
Publisher
:
李大兵
[
ISAPI-IE
]
WebBrowser
DL : 0
加载 WebBrowser 控件,无滚动条,无3D边框,无右键
Update
: 2025-02-17
Size
: 122kb
Publisher
:
ychg
[
Internet-Network
]
321423
DL : 0
WebBrowser和VB窗体进行通信的例子,点WebBrowser里的关闭就会关闭窗体!-WebBrowser and VB examples of the form to communicate the point where the closure will be turned off WebBrowser form!
Update
: 2025-02-17
Size
: 2kb
Publisher
:
阿波
[
Windows Develop
]
VB.programming.code.WebBrowser.Control.Development
DL : 0
VB编程WebBrowser控件开发经典代码Classic VB programming code WebBrowser Control Development -Classic VB programming code WebBrowser Control Development
Update
: 2025-02-17
Size
: 3kb
Publisher
:
w
[
Windows Develop
]
webbrowser
DL : 0
vb中webbrowser运用,比较简单,适合初学者-in the webbrowser vb use relatively simple, suitable for beginners
Update
: 2025-02-17
Size
: 3kb
Publisher
:
meepo
[
Windows Develop
]
vb-WebBrowser
DL : 0
vb制作的浏览器,代码简单,非常实用! 小孩不乖制作-vb production of the browser, the code is simple, very practical!
Update
: 2025-02-17
Size
: 2kb
Publisher
:
小孩不乖
[
Windows Develop
]
WebBrowser控件技巧集
DL : 0
vb编程语言中的webbrower控件,使用性强大,在Internet编程中非常方便。(VB programming language webbrower controls, the use of powerful, very convenient in Internet programming.)
Update
: 2025-02-17
Size
: 8kb
Publisher
:
李静雪
[
Windows Develop
]
使用VB程序发送微信
DL : 5
本VB程序使用IE浏览器控件WebBrowser和网页版微信,通过RichTextBox文本框来发送微信。在RichTextBox文本框中输入要发送的微信消息,按回车键后,自动将输入的内容发送到微信中。(This VB program uses the IE browser control WebBrowser and the web page WeChat to send WeChat through the RichTextBox text box. Enter the WeChat message to be sent in the RichTextBox text box, and press the return key to automatically send the input to the WeChat.)
Update
: 2025-02-17
Size
: 13kb
Publisher
:
czcjy123
[
Other
]
使用VB程序发送微信
DL : 0
本VB程序使用IE浏览器控件WebBrowser和网页版微信,通过RichTextBox文本框来发送微信。在RichTextBox文本框中输入要发送的微信消息,按回车键后,自动将输入的内容发送到微信中。(This VB program uses IE browser control WebBrowser and Web version Wechat to send wechat through Rich TextBox text box. Enter the message to be sent in the Rich TextBox text box, press the Enter key, and automatically send the input content to the micro-letter.)
Update
: 2025-02-17
Size
: 7kb
Publisher
:
fieluiten
«
1
2
3
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.