vbs得没公开对象

WSH中可以运用的InternetExplorer.Application
如例:
原代码:
set ie=createobject("internetexplorer.application")
msgbox "显示IE"
ie.visible=true
msgbox "隐藏ie"
ie.visible=false
msgbox "关闭ie"
ie.quit

下面这是internetexplorer.application的方法
如上面用的
ie.visible==false同ie.visible=true
就是用这个方法
Property Visible As Boolean
Determines whether the application is visible or hidden.

方法:
Property AddressBar As Boolean
Controls whether address bar is shown
Property Application As Object
Returns the application automation object if accessible, this automation object otherwise..
Property Busy As Boolean
Query to see if something is still in progress.
Sub ClientToWindow(pcx As Long, pcy As Long)
Converts client sizes into window sizes.
Property Container As Object
Returns the container/parent automation object, if any.
Property Document As Object
Returns the active Document automation object, if any.
Sub ExecWB(ByVal cmdID As OLECMDID, ByVal cmdexecopt As OLECMDEXECOPT, [pvaIn], [pvaOut])
IOleCommandTarget::Exec
Property FullName As String
Returns file specification of the application, including path.
Property FullScreen As Boolean
Maximizes window and turns off statusbar, toolbar, menubar, and titlebar.
Function GetProperty(ByVal Property As String)
Retrieve the Associated value for the property vtvalue in the context of the object.
Sub GoBack
Navigates to the previous item in the history list.
Sub GoForward
Navigates to the next item in the history list.
Sub GoHome
Go home/start page.
Sub GoSearch
Go Search Page.
Property Height As Long
The vertical dimension (pixels) of the frame window/object.
Property HWND As Long
Returns the HWND of the current IE window.
Property Left As Long
The horizontal position (pixels) of the frame window relative to the screen/container.
Property LocationName As String
Gets the short (UI-friendly) name of the URL/file currently viewed.
Property LocationURL As String
Gets the full URL/path currently viewed.
Property MenuBar As Boolean
Controls whether menubar is shown.
Property Name As String
Returns name of the application.
Sub Navigate(ByVal URL As String, [Flags], [TargetFrameName], [PostData], [Headers])
Navigates to a URL or file.
Sub Navigate2(URL, [Flags], [TargetFrameName], [PostData], [Headers])
Navigates to a URL or file or pidl.
Property Offline As Boolean
Controls if the frame is offline (read from cache)
Property Parent As Object
Returns the automation object of the container/parent if one exists or this automation object.
Property Path As String
Returns the path to the application.
Sub PutProperty(ByVal Property As String, ByVal vtvalue)
Associates vtvalue with the name szProperty in the context of the object.
Function QueryStatusWB(ByVal cmdID As OLECMDID) As OLECMDF
IOleCommandTarget::QueryStatus
Sub Quit
Exits application and closes the open document.
Property ReadyState As tagREADYSTATE
no description available
Sub Refresh
Refresh the currently viewed page.
Sub Refresh2([Level])
Refresh the currently viewed page.
Property RegisterAsBrowser As Boolean
Registers OC as a top-level browser (for target name resolution)
Property RegisterAsDropTarget As Boolean
Registers OC as a drop target for navigation
Property Resizable As Boolean
Controls whether the window is resizable
Sub ShowBrowserBar(pvaClsid, [pvarShow], [pvarSize])
Set BrowserBar to Clsid
Property Silent As Boolean
Controls if any dialog boxes can be shown
Property StatusBar As Boolean
Turn on or off the statusbar.
Property StatusText As String
Text of Status window.
Sub Stop
Stops opening a file.
Property TheaterMode As Boolean
Controls if the browser is in theater mode
Property ToolBar As Long
Controls which toolbar is shown.
Property Top As Long
The vertical position (pixels) of the frame window relative to the screen/container.
Property TopLevelContainer As Boolean
Returns True if this is the top level object.
Property Type As String
Returns the type of the contained document object.
Property Visible As Boolean
Determines whether the application is visible or hidden.
Property Width As Long
The horizontal dimension (pixels) of the frame window/object.

(0)

相关推荐

  • vbs得没公开对象

    WSH中可以运用的InternetExplorer.Application 如例: 原代码: set ie=createobject("internetexplorer.application") msgbox "显示IE" ie.visible=true msgbox "隐藏ie" ie.visible=false msgbox "关闭ie" ie.quit 下面这是internetexplorer.application的

  • VBS基础篇 - wscript 对象详解

    一.wscript对象 描述:提供对 Windows 脚本宿主对象模型根对象的访问. 详述:WScript 对象是 Windows 脚本宿主对象模型层次结构的根对象.它可在任何脚本文件中使用,不需要特定的声明.         WScript 对象提供对以下信息的访问命令行参数, 脚本文件的名称,宿主文件名, 宿主版本信息.         WScript 对象可用来创建对象,连接对象, 与对象断开连接, 同步事件, 以编程方式停止脚本的执行,将信息输出到默认输出设备(Windows 对话框或命

  • VBS基础篇 Err对象

    Err对象是一个具有全局范围的内部对象,含有关于错误的所有信息. On Error Resume next 忽略运行时产生的所有错误 On Error Goto 0 取消忽略错误措施 主要方法有:Clear.Raise 主要属性有:Description.HelpContext.HelpFile.Number.Source 其属性及方法的详细说明见下面的示例说明: Err对象的方法 Clear 描述:清空Err对象当前所有的属性,也就是清空错误 语法:Err.Clear 示例: On Error

  • VBS基础篇 - FileSystemObject对象详解

    下面是转摘的关于FileSystemObject的详细介绍,TextStream是其中的一个子对象. 前言 最近一直在学VBScript,网上相关的教程也有很多,但大多数的对象都放在ASP中讲解,对于没有学过ASP的同学来说就非常郁闷了.所以打算把在学习FileSystemObject及TextStream中所常用的属性和方法写出来供大家来学习,如有不妥的地方请予以指出. 备注:所有的脚本均在QTP 9.0中测试过. FileSystemObject对象概述 FileSystemObject 对

  • VBS教程:VBScript 对象

    VBScript 对象描述语言元素提供对已创建类的事件的访问途径.Class 对象用于保存数据主键,值对的对象.Dictionary 对象包含与运行时错误相关的信息.Err 对象提供对计算机文件系统的访问途径.FileSystemObject 对象提供对一个正则表达式匹配的只读属性的访问途径功能.Match 对象正则表达式 Match 对象的集合.Matches 集合提供简单的正则表达式支持.RegExp 对象提供对正则表达式子匹配字符串的只读值的访问.SubMatches 集合

  • vbs能调用的系统对象小结

    vbs能调用系统对象: 文件系统对象相关: ("scripting.filesystemobject") 字典相关: ("scripting.dictionary") 脚本外壳相关: ("wscript.shell") windows外壳相关: ("shell.application") 正则表达式相关: ("vbscript.regexp") asp相关: ("mswc.adrotator&qu

  • 举例讲解Java设计模式中的对象池模式编程

    定义 一个对象池是一组已经初始化过且可以使用的对象的集合,池的用户可以从池子中取得对象,对其进行操作处理,并在不需要时归还给池子而非销毁它. 若初始化.实例化的代价高,且有需求需要经常实例化,但每次实例化的数量较少的情况下,使用对象池可以获得显著的效能提升.从池子中取得对象的时间是可预测的,但新建一个实例所需的时间是不确定. 实现 1. Reusable - 对象池中的对象,通常实例化代价比较高. 2. Client - 使用一个对象的实例. 3. ReusablePool - 管理对象的实例化

  • 浅析创建javascript对象的方法

    一.工厂模式 function person (name,age) { var p=new Object(); p.name=name; p.age=age; p.showMessage=function(){ console.log("name:"+this.name+" age:"+this.age); } return p; } var p1=person("k1",28); var p2=person("k2",29)

  • ASP数据库连接方式大全

    <%  '#######以下是一个类文件,下面的注解是调用类的方法################################################  '# 注意:如果系统不支持建立Scripting.FileSystemObject对象,那么数据库压缩功能将无法使用  '# Access 数据库类  '# CreateDbFile 建立一个Access 数据库文件  '# CompactDatabase 压缩一个Access 数据库文件  '# 建立对象方法:  '# Set a

  • 超精华的asp代码大全第1/2页

    显示页面加载时间 重复域中的斑马线  显示字符串前20个字符并在结尾处添加"--"  如果动态图片为空,使用默认图片代替  如果数据为空,使用默认提示信息代替  ●显示页面加载时间 页面顶部添加下面的代码: <% Dim strStartTime Dim strEndTime strStartTime = Timer '开始时间 %> 页面(同一页)的末尾添加: <% ' 加载完毕的时间 strEndTime = Timer Response.Write ("

随机推荐