Visual Basic CreateObject 函数
定义和用法
CreateObject
函数可创建一个指定类型的对象。
语法
CreateObject(servername.typename[,location])
参数 | 描述 |
---|---|
servername | 必需的。提供此对象的应用程序名称。 |
typename | 必需的。对象的类型或类(type/class)。 |
location | 可选的。在何处创建对象。 |
实例
例子 1
Module Module1
Sub Main()
Dim myexcel;
Set myexcel=CreateObject("Excel.Sheet");
myexcel.Application.Visible=True;
...code...
myexcel.Application.Quit
Set myexcel=Nothing
End Sub
End Module