jscript之Open an Excel Spreadsheet_javascript技巧
程序员文章站
2022-04-01 23:43:29
...
Description
Demonstration script that opens an existing Excel spreadsheet
named C:\Scripts\New_users.xls.
Set objExcel = CreateObject("Excel.Application")
Set objWorkbook = objExcel.Workbooks.Open("C:\Scripts\New_users.xls")
Demonstration script that opens an existing Excel spreadsheet
named C:\Scripts\New_users.xls.
复制代码 代码如下:
Set objExcel = CreateObject("Excel.Application")
Set objWorkbook = objExcel.Workbooks.Open("C:\Scripts\New_users.xls")
上一篇: Android下安装apache、mysql、php环境
下一篇: 事务隔离级别详解_MySQL