当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript Create对象 函数
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 可选项。对象所在的网络服务器将被创建。 |
dim myexcel myexcel.Application.Visible=True ...code... myexcel.Application.Quit Set myexcel=Nothing |