欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

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")