怎样将excel某一个单元格写入vfp表中呀
-- 怎样将excel某一个单元格写入vfp表中呀?
local hh
oleapp=Createobject("Excel.Application")
oleapp.workbooks.open("d:\tempfile.xls")
oleapp.sheets("sheet1").select
use d:\temp.dbf
hh=oleapp.cells(3,5).value
repl aa with hh
oleapp.activeworkbook.close
oleapp.quit
use
总是通不过!类型不匹配! (aa是表temp的一个字段,类型数值型) 可是我加上val(hh) repl aa with val(hh) 也不行!
oleapp.cells(3,5).value返回的到底是什么类型的值呀??