set objExcel = CreateObject("Excel.Application")
objExcel.Workbooks.Open (ExcelNameAndPath)
objExcel.Worksheets("sheet1").Activate
set CreateExcelObj=objExcel
End Function
调用过程如下:
set objExcel1 =CreateExcelObj("D:\project\usercenter.xls")
。。。。。。。。。。。。。。。
objExcel1.Cells(2,13).value=rootNode.childNodes(0).attributes(0).nodeValue
objExcel1.Cells(2,14).value=rootNode.childNodes(0).attributes(1).nodeValue
。。。。。。。。。。。。。。。
objExcel1.save
objExcel1.quit
Set objExcel1=nothing