- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章VBS InternetExplorer.Application的属性和方法介绍由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
示例代码 。
1
2
3
4
5
6
7
|
Set
ie = CreateObject(
"InternetExplorer.Application"
)
ie.Navigate
"http://www.zzvips.com"
Wscript.Sleep 1000
ie.Toolbar = 0
ie.visible=
False
ie.Document.f1.word.value = kw
If
ie.Document.f1.word.value=
""
Then
Wscript.Quit
|
上面是在网上看到的,Navigate Toolbar visible 等都是怎么用的?? 怎么网上找不到它们的用法? 下面是一些属性说明:
Set ie=WScript.CreateObject("internetexplorer.application") ie.menubar=0 '不显示IE对象菜单栏 ie.AddressBar=0 '不显示IE对象地址栏 ie.ToolBar=0 '不显示IE对象工具栏 ie.StatusBar=0 '不显示IE对象状态栏 ie.FullScreen=1 '全屏化IE对象 ie.Width=800 '设置IE对象宽度 ie.Height=600 '设置IE对象高度 ie.Resizable=0 '设置IE对象大小是否可以被改动 ie.visible=1 '设置是否可见 ie.Navigate "http://www.zzvips.com" '设置IE对象默认指向的页面 。
目的留个备份,方便我以后去MSDN上找用法.
InternetExplorer Object 。
42 out of 82 rated this helpful Rate this topic 。
Controls an instance of Windows Internet Explorer through automation. 。
Members Table 。
The following table lists the members exposed by the InternetExplorer object. 。
Events 。
。
Event | Description |
---|---|
BeforeNavigate | Fires before navigation occurs in the given object (on either a window or frameset element). |
BeforeNavigate2 | Fires before navigation occurs in the given object (on either a window element or a frameset element). |
CommandStateChange | Fires when the enabled state of a command changes. |
DocumentComplete | Fires when a document is completely loaded and initialized. |
DownloadBegin | Fires when a navigation operation begins. |
DownloadComplete | Fires when a navigation operation finishes, is halted, or fails. |
FileDownload | Fires to indicate that a file download is about to occur. If a file download dialog box can be displayed, this event fires prior to the appearance of the dialog box. |
NavigateComplete | Fires after a navigation to a link is completed on either a window element or a frameSet element. |
NavigateComplete2 | Fires after a navigation to a link is completed on a window element or a frameSet element. |
NavigateError | Fires when an error occurs during navigation. |
NewProcess | Creates a new process to handle the navigation. |
NewWindow | Fires when a new window is to be created. |
NewWindow2 | Fires when a new window is to be created. |
NewWindow3 | Raised when a new window is to be created. Extends NewWindow2 with additional information about the new window. |
OnFullScreen | Fires when the FullScreen property is changed. |
OnMenuBar | Fires when the MenuBar property is changed. |
OnQuit | Fires before the Internet Explorer application quits. |
OnStatusBar | Fires when the StatusBar property is changed. |
OnTheaterMode | Fires when the TheaterMode property is changed. |
OnToolBar | Fires when the ToolBar property is changed. |
OnVisible | Fires when the Visible property of the object is changed. |
PrintTemplateInstantiation | Fires when a print template is instantiated. |
PrintTemplateTeardown | Fires when a print template is destroyed. |
PrivacyImpactedStateChange | Fired when an event occurs that impacts privacy, or when a user navigates away from a URL that has impacted privacy. |
ProgressChange | Fires when the progress of a download operation is updated on the object. |
PropertyChange | Fires when the PutProperty method of the object changes the value of a property. |
RedirectXDomainBlocked | Fired when a cross-domain redirect request is blocked. |
SetPhishingFilterStatus | Fires to indicate the progress and status of Microsoft Phishing Filter analysis of the current webpage. |
SetSecureLockIcon | Fires when there is a change in encryption level. |
StatusTextChange | Fires when the status bar text of the object has changed. |
ThirdPartyUrlBlocked | Fired when a third-party URL is blocked. |
TitleChange | Fires when the title of a document in the object becomes available or changes. |
UpdatePageStatus | Not implemented. |
WindowActivate | Not implemented. |
WindowMove | Not implemented. |
WindowResize | Not implemented. |
WindowStateChanged | Fires when the visibility state of a content window, such as the browser window or a tab, changes. |
。
Methods 。
。
Method | Description |
---|---|
ClientToWindow | Computes the full size of the browser window when given the specified width and height of the content area. |
ExecWB | Executes a command and returns the status of the command execution using the IOleCommandTarget interface. |
GetProperty | Gets the value associated with a user-defined property name. |
GoBack | Navigates backward one item in the history list. |
GoForward | Navigates forward one item in the history list. |
GoHome | Navigates to the current home or start page. |
GoSearch | Navigates to the current search page. |
Navigate | Navigates to a resource identified by a URL or to a file identified by a full path. |
Navigate2 | Navigates the browser to a location that might not be expressed as a URL, such as a pointer to an item identifier list (PIDL) for an entity in the Windows Shell namespace. |
PutProperty | Associates a user-defined name/value pair with the object. |
QueryStatusWB | Queries the object for the status of commands using the IOleCommandTarget interface. |
Quit | Closes the object. |
Refresh | Reloads the file that is currently displayed in the object. |
Refresh2 | Reloads the file that is currently displayed with the specified refresh level. |
ShowBrowserBar | Shows or hides a specified browser bar. |
Stop | Cancels a pending navigation or download, and stops dynamic page elements, such as background sounds and animations. |
。
Properties 。
。
Property | Description |
---|---|
AddressBar | Sets or gets a value that indicates whether the address bar of the object is visible or hidden. |
Application | Gets the automation object for the application that is hosting the WebBrowser Control. |
Busy | Gets a value that indicates whether the object is engaged in a navigation or downloading operation. |
Container | Gets an object reference to a container. |
Document | Gets the automation object of the active document, if any. |
FullName | Retrieves the fully qualified path of the Internet Explorer executable. |
FullScreen | Sets or gets a value that indicates whether Internet Explorer is in full-screen mode or normal window mode. |
Height | Sets or gets the height of the object. |
HWND | Gets the handle of the Internet Explorer main window. |
Left | Sets or gets the coordinate of the left edge of the object. |
LocationName | Retrieves the path or title of the resource that is currently displayed. |
LocationURL | Gets the URL of the resource that is currently displayed. |
MenuBar | Sets or gets a value that indicates whether the Internet Explorer menu bar is visible. |
Name | Retrieves the frame name or application name of the object. |
Offline | Sets or gets a value that indicates whether the object is operating in offline mode. |
Parent | Gets the parent of the object. |
Path | Retrieves the system folder of the Internet Explorer executable. |
ReadyState | Gets the ready state of the object. |
RegisterAsBrowser | Sets or gets a value that indicates whether the object is registered as a top-level browser window. |
RegisterAsDropTarget | Sets or gets a value that indicates whether the object is registered as a drop target for navigation. |
Resizable | Sets or gets a value that indicates whether the object can be resized. |
Silent | Sets or gets a value that indicates whether the object can display dialog boxes. |
StatusBar | Sets or gets a value that indicates whether the status bar for the object is visible. |
StatusText | Sets or gets the text in the status bar for the object. |
TheaterMode | Sets or gets whether the object is in theater mode. |
ToolBar | Sets or gets whether toolbars for the object are visible. |
Top | Sets or gets the coordinate of the top edge of the object. |
TopLevelContainer | Gets a value that indicates whether the object is a top-level container. |
Type | Gets the user type name of the contained document object. |
Visible | Sets or gets a value that indicates whether the object is visible or hidden. |
Width | Sets or gets the width of the object. |
。
Remarks 。
Internet Explorer 8. On Windows Vista, to create an instance of Internet Explorer running at a medium integrity level, pass CLSID_InternetExplorerMedium (defined in exdisp.idl) to CoCreateInstance. The resulting InternetExplorerMedium object supports the same events, methods, and properties as the InternetExplorer object. 。
Examples 。
The following example uses CreateObject in Microsoft Visual Basic to launch an instance of Internet Explorer. 。
1
2
|
Dim
IE
As
SHDocVw.InternetExplorer
Set
IE = CreateObject(
"InternetExplorer.Application"
)
|
The following C# example launches an instance of Internet Explorer and navigates to a Web page. The code also demonstrates how to create an event handler to listen for the BeforeNavigate2 event. The project requires a reference to the Microsoft Internet Controls (SHDocVw) type library. 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
using
System;
using
System.Collections.Generic;
using
System.Text;
namespace
ConsoleApplication1
{
class
EventHandlers
{
public
void
OnBeforeNavigate2(
object
sender,
ref
object
URL,
ref
object
Flags,
ref
object
Target,
ref
object
PostData,
ref
object
Headers,
ref
bool
Cancel)
{
Console.WriteLine(
"BeforeNavigate2 fired!"
);
}
}
class
Program
{
static
void
Main(
string
[] args)
{
EventHandlers e =
new
EventHandlers();
SHDocVw.InternetExplorer IE =
new
SHDocVw.InternetExplorer();
object
Empty = 0;
object
URL =
"http://www.live.com"
;
// override BeforeNavigate2 event
IE.BeforeNavigate2 +=
new
SHDocVw.DWebBrowserEvents2_BeforeNavigate2EventHandler(
e.OnBeforeNavigate2);
IE.Visible =
true
;
IE.Navigate2(
ref
URL,
ref
Empty,
ref
Empty,
ref
Empty,
ref
Empty);
System.Threading.Thread.Sleep(5000);
IE.Quit();
}
}
}
|
Object Information 。
。
CLSID | CLSID_InternetExplorer |
---|---|
Minimum availability | Internet Explorer 4.0 |
Minimum operating systems | Windows 98, Windows CE 4.0 |
。
最后此篇关于VBS InternetExplorer.Application的属性和方法介绍的文章就讲到这里了,如果你想了解更多关于VBS InternetExplorer.Application的属性和方法介绍的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
晚上在 QQ 上看到昵称为“乱码”的好友回答了搜搜问问里一个问题: 在VBS中有办法定义字节数组么? 在VBS中有办法定义字节数组么?就是字节子类型数组(VarType是8209的那种)注意不是V
例如,员工管理应用程序可能包括一个EmPloyee 类。然后可以用这个类来创建和维护特定实例,比如Gonn和Sally。 根据预定义的类创建对象常称为类的实例化(class insta
在自然语言中,我们理解抽象的概念是,一个物体的一种大的描述,这种描述对某类物体来说是共有的特性。那么在PHP中也是一样的,我们把一个类进行抽象,可以指明类的一般行为,这个类应该是一个模板,它指示它的
DBA_2PC_PENDING Oracle会自动处理分布事务,保证分布事务的一致性,所有站点全部提交或全部回滚。一般情况下,处理过程在很短的时间内完成,根本无法察觉到。但是,如果在commit或
目录 计算过程 投影分量计算 假设你有一家理发店,已经记录了过去一年中所有顾客的头发长度和发型偏好的数据。现在你想从这些数据中提取一些主要的信息,比如顾客最常
Object.defineProperty函数会直接在一个对象上定义一个新的属性,或者修改一个对象的现有属性,并返回此对象。 一、简单使用 const obj = {} Object.defineP
SPL官网 http://www.scudata.com.cn/ 介绍 业务逻辑经常包含较复杂的流程和计算,同时涉及数据库的读写。由于授权麻烦、影响数据库安全、无法迁移、技术要求高、编写困难等原因,很
SPL官网 http://www.scudata.com.cn/ 介绍 业务逻辑经常包含较复杂的流程和计算,同时涉及数据库的读写。由于授权麻烦、影响数据库安全、无法迁移、技术要求高、编写困难等原因,很
一 点睛 Thrift 是一歀基于 CS 架构的 RPC 框架,最初由 Facebook 研发,2008 年转入 Apache 组织。开发人员可以使用 Thrift 提供的 IDL(接口定义语言)来定
数据库应用程序与主应用程序分开存在,并存储数据集合。 每个数据库都使用一个或多个API来创建,访问,管理,搜索和复制其包含的数据。 数据库还使用非关系数据源,例如对象或文件。 然而,数据库证明是大数
介绍 Ant是一个 Apache 基金会下的跨平台的基于 Java 语言开发的构件工具。在我们详细了解 Apache Ant 之前, 让我们来讲解为什么构建工具是需要最先了解的。 构建工具的需求
我现在正在尝试学习ocaml,并希望从一个小程序开始,生成所有位组合: [“0”,“0”,“0”] [“0”,“0”,“1”] [“0”,“1”,“0”] ... 等等 我的想法是下面的代码: let
我正在做我的介绍 C 类(class)作业,我的任务是执行以下任务...... 为一个函数编写代码,该函数通过值接收两个参数(a 和 b)并通过引用具有另外两个参数(c 和 d)。所有参数都是双倍的。
我希望提供有关我网站内容的快速演示,以及如何在用户访问我的页面后立即以正确的方式使用它们。我希望使用顶部的弹出式窗口进行演示。 我的意思是小信息框,一个接一个地通知用户各个步骤。任何人都可以帮助我如何
与C、Java等语言一样,JavaScript中可以用&&、||、!三个逻辑判断符来对boolean值进行逻辑判断。与C、Java不同的是,JavaScript中逻辑与(&&
JavaScript中,==与===操作符均可用于判断两个值是否相等;不同之处在于,如果进行判断的两个值类型不一致,===操作符会直接返回false,而==操作符则会在类型转换后再进行判断。详细的判
JavaScript中,object转换为boolean的操作非常简单:所有的object转换成boolean后均为true;即使是new Boolean(false)这样的object在转换为bo
在android开发中,当不满足触发条件就按返回键的时候,就要对此进行检测。尤其是当前Activity需要往前一个Activity传送消息时。即Activity1跳转到Activity3如果采用的是
背景 当要求系统启动一个应用程序时,系统会先查找当前命令是否是内部命令,若不是,则在当前目录下查找,如果仍没有找到,则在系统变量 Path 指定的路径去查找。JDK(Java Developmen
概述 想做一个微信的公众平台,阅读了微信官方给的网址接入的示例代码,发现有个问题好像一直都是半知半解的,就是在类里边直接使用$_GET。仔细查了下关于这方面的知识,发现PHP中这部分的基础知识掌握
我是一名优秀的程序员,十分优秀!