把vfp表中的資料匯入指定的excel檔案中 (轉)
cb_zwhz
go top
XLApp = Get('F:tempinout.xls','.sheet')
XLApp.application.visible=.F.
XLApp.application. ("sqlinout.xls").Visible = .T.
XLSheet =XLApp.Sheets['Sheet1']
XLSheet.Cells(1,1).Value = "Month"
XLSheet.Cells(1,2).Value = "ZwCode"
XLSheet.Cells(1,3).Value = "Qty"
XLSheet.Cells(1,4).Value = "Cost"
XLSheet.Cells(1,5).Value = "Money"
i=1
select cb_zwhz
do while not eof ()
XLSheet.Cells(i+1,1).Value=Month
XLSheet.Cells(i+1,2).Value=ZwCode
XLSheet.Cells(i+1,3).Value=Qty
XLSheet.Cells(i+1,4).Value=Cost
XLSheet.Cells(i+1,5).Value=Money
skip
i=i+1
enddo
XLApp.Save
XlApp.Close
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10748419/viewspace-995819/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 把csv檔案的資料匯入到oracle資料庫中Oracle資料庫
- 如何把 .csv 的檔案匯入資料庫SQL SERVER 中!資料庫SQLServer
- 把Excel表資料匯入到mysqlExcelMySql
- excel檔案中的資料匯入Oracle資料庫的幾種方法ExcelOracle資料庫
- vfp匯入文字檔案
- 把ACCESS的資料匯入到Mysql中(轉)MySql
- 將Excel中的資料匯入至MsSQLSERVER中(示例) (轉)ExcelSQLServer
- EasyExcel庫來讀取指定Excel檔案中的資料Excel
- Excel的資料匯入到PB的DW中Excel
- Excel 表匯入資料Excel
- php讀取excel檔案資料的匯入和匯出PHPExcel
- 檢視Oracle表中的指定記錄在資料檔案中的位置Oracle
- 【Mysql】匯出資料到excel檔案中MySqlExcel
- Oracle工具之sqlldr的使用--如何將文字檔案或Excel中的資料匯入資料庫OracleSQLExcel資料庫
- Net.Core匯入EXCel檔案裡的資料Excel
- 在VFP中全面控制ExcelExcel
- 匯入excel檔案Excel
- java 實現excel中的資料匯入到資料庫的功能JavaExcel資料庫
- 使用xml檔案,做資料的匯入,匯出 (轉)XML
- EasyExcel完成excel檔案的匯入匯出Excel
- 把資料匯入到不同的表空間
- 如何把資料匯入不同的表空間
- C#中獲取Excel檔案中的表名C#Excel
- 把一個資料表中的資料匯入另一個表,觸發器和儲存過程的觸發器儲存過程
- 使用IMP將資料匯入指定的表空間
- java程式碼實現excel檔案資料匯入JavaExcel
- Mysql 大資料表 資料匯入到SqlServer 中的方法MySql大資料Server
- 關於java中Excel的匯入匯出JavaExcel
- banq您好,請問如何把excel的資料匯入mysql.ExcelMySql
- EasyPoi, Excel資料的匯入匯出Excel
- Python合併多個Excel檔案中的指定sheetPythonExcel
- 如何將資料庫中的資料導成 excel 檔案資料庫Excel
- python——將excel檔案寫入mysql資料庫中PythonExcelMySql資料庫
- 利用xlrd模組在Django專案中實現Excel檔案匯入DjangoExcel
- 從Gitlab中匯出issue到Excel檔案中GitlabExcel
- pl/sql developer將excel資料匯入到資料庫中SQLDeveloperExcel資料庫
- ASP.NET 匯出gridview中的資料到Excel表中,並對指定單元格換行操作ASP.NETViewExcel
- 從cmd中匯入.SQL檔案並建立資料庫SQL資料庫