把vfp表中的資料匯入指定的excel檔案中 (轉)

gugu99發表於2007-12-26
把vfp表中的資料匯入指定的excel檔案中 (轉)[@more@]

 


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/,如需轉載,請註明出處,否則將追究法律責任。

相關文章