Description
Demonstrationscriptthatreadsthevaluesstoredinaspreadsheet
namedC:ScriptsNew_users.xls.
ScriptCode
复制代码 代码如下:
SetobjExcel=CreateObject("Excel.Application")
SetobjWorkbook=objExcel.Workbooks.Open_
("C:ScriptsNew_users.xls")
intRow=2
DoUntilobjExcel.Cells(intRow,1).Value=""
Wscript.Echo"CN:"&objExcel.Cells(intRow,1).Value
Wscript.Echo"sAMAccountName:"&objExcel.Cells(intRow,2).Value
Wscript.Echo"GivenName:"&objExcel.Cells(intRow,3).Value
Wscript.Echo"LastName:"&objExcel.Cells(intRow,4).Value
intRow=intRow+1
Loop
objExcel.Quit
【jscript之Read an Excel Spreadsheet】相关文章:
★ JavaScript中用于生成随机数的Math.random()方法
★ html下载本地
★ 百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换
★ Javascript 事件捕获的备忘(setCapture,captureEvents)