jscript之Open an Excel Spreadsheet
时间:2020-12-03 16:56:20|栏目:JavaScript代码|点击: 次
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")
上一篇:小程序中的箭头函数的具体使用
栏 目:JavaScript代码
下一篇:原生js调用json方法总结
本文标题:jscript之Open an Excel Spreadsheet
本文地址:http://www.codeinn.net/misctech/28869.html