当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript Create对象 函数

VBScript
VBScript 介绍
如何使用 VBScript
VBScript 放置
VBScript 变量
VBScript 程序
VBScript 条件语句
VBScript 循环声明
VBScript 摘要
VBScript 实例
VBScript 函数
VBScript 关键字

VBScript Create对象 函数


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 149 ::
收藏到网摘: n/a

The CreateObject function creates an object of a specified type.
CreateObject 函数可建立指定类型对象

语法

CreateObject(servername.typename[,location])

参数 描述
servername Required. The name of the application that provides the object
必选项。提供对象的应用程序名称。
typename Required. The type/class of the object
必选项。要创建的对象类型或类。
location Optional. Where to create the object
可选项。对象所在的网络服务器将被创建。

实例 1

dim myexcel
Set myexcel=CreateObject("Excel.Sheet")
myexcel.Application.Visible=True
...code...
myexcel.Application.Quit
Set myexcel=Nothing

评论 (0) All

登陆 | 还没注册?