有了下面这个使用CreateObject创建Excel实例代码教程,不懂使用CreateObject创建Excel实例代码的也能装懂了,赶紧get起来装逼一下吧!
【 tulaoshi.com - Excel教程 】
一、使用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
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com).Range("A1") = "Hello World"
End With
End Sub
二、使用CreateObject创建指定版本的Excel实例
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com)Sub mate()
Dim objExcel As Object
Set objExcel = CreateObject("Excel.Application.8")
End Sub
当Create对象实例之后,就可以使用该对象的所有属性和方法了,如SaveAs方法、Open方法、Application属性等。
来源:http://www.tulaoshi.com/n/20160219/1608757.html
看过《使用CreateObject创建Excel实例代码》的人还看了以下文章 更多>>