Visual Basic CreateObject 函数

定义和用法

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

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

实例

例子 1
  1. Module Module1
  2. Sub Main()
  3. Dim myexcel;
  4. Set myexcel=CreateObject("Excel.Sheet");
  5. myexcel.Application.Visible=True;
  6. ...code...
  7. myexcel.Application.Quit
  8. Set myexcel=Nothing
  9. End Sub
  10. End Module

分类导航