VBScript UCase 函数

定义和用法

CreateObject 函数可创建一个指定类型的对象。

语法

  1. CreateObject(servername.typename[,location])
参数 描述
servername 必需的。提供此对象的应用程序名称。
typename 必需的。对象的类型或类(type/class)。
location 可选的。在何处创建对象。

实例

例子 1

  1. dim myexcel
  2. Set myexcel=CreateObject("Excel.Sheet")
  3.  
  4. myexcel.Application.Visible=True
  5.  
  6. ...code...
  7.  
  8. myexcel.Application.Quit
  9.  
  10. Set myexcel=Nothing