人妻丰满熟妇无码区乱com|久久婷婷午夜精品二区|一道本国产不卡视频|国产孕妇故爱A级高清片免费看

<tbody id="geoqw"></tbody>
  • <center id="geoqw"></center>
  • <menu id="geoqw"></menu>
  • <center id="geoqw"></center>
    
    <menu id="geoqw"></menu>
  • 使用CreateObject創(chuàng)建Excel實(shí)例

    時(shí)間:2022-10-05 14:02:35 網(wǎng)絡(luò)知識(shí) 我要投稿
    • 相關(guān)推薦

    使用CreateObject創(chuàng)建Excel實(shí)例

      感謝 clown_ 的投遞 時(shí)間:2013-03-01 15:02 來(lái)源:三聯(lián)教程   一、使用CreateObject創(chuàng)建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創(chuàng)建指定版本的Excel實(shí)例

      Sub mate()

      Dim objExcel As Object

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

      End Sub

      當(dāng)Create對(duì)象實(shí)例之后,就可以使用該對(duì)象的所有屬性和方法了,如SaveAs方法、Open方法、Application屬性等。

    【使用CreateObject創(chuàng)建Excel實(shí)例】相關(guān)文章:

    excel實(shí)訓(xùn)心得03-09

    關(guān)于Excel的Hour函數(shù)介紹09-22

    Excel日期和時(shí)間函數(shù)11-27

    關(guān)于Excel工程函數(shù)大全11-27

    關(guān)于excel中的cos函數(shù)11-03

    荷花語(yǔ)文教案實(shí)例10-19

    實(shí)例論證雅思的寫(xiě)作方法10-15

    如何讓Excel表格行列自動(dòng)求和11-27

    什么是excel2007中的宏11-26

    怎么更改Excel迭代公式的次數(shù)04-13