使用CreateObject创建Excel实例

时间:2024-09-24 10:58:13
使用CreateObject创建Excel实例

使用CreateObject创建Excel实例

  感谢 clown_ 的'投递 时间:2013-03-01 15:02 来源:三联教程   一、使用CreateObject创建Excel

  Sub LateBinding()

  'Declare a generic object variable

  Dim objExcel As Object

  'Point the object variable at an Excel application object

  Set objExcel = CreateObject("Excel.Application")

  'Set properties and execute methods of the object

  With objExcel

  .Visible = True

  .Workbooks.Add

  .Range("A1") = "Hello World"

  End With

  End Sub

  二、使用CreateObject创建指定版本的Excel实例

  Sub mate()

  Dim objExcel As Object

  Set objExcel = CreateObject("Excel.Application.8")

  End Sub

  当Create对象实例之后,就可以使用该对象的所有属性和方法了,如SaveAs方法、Open方法、Application属性等。

《使用CreateObject创建Excel实例.doc》
将本文的Word文档下载到电脑,方便收藏和打印
推荐度:
点击下载文档

文档为doc格式