以文本方式查看主题

-  易表在线答疑  (http://egrid2000.com/dvbbs/index.asp)
--  用户社区  (http://egrid2000.com/dvbbs/list.asp?boardid=2)
----  能不能通过ImportDBFile()函数将excle表格导入易表中呢?  (http://egrid2000.com/dvbbs/dispbbs.asp?boardid=2&id=18580)

--  作者:ynbn
--  发布时间:2009/11/25 9:47:00
--  能不能通过ImportDBFile()函数将excle表格导入易表中呢?
如果能,这个函数怎么写呀?谢谢帮忙!
--  作者:lyang70
--  发布时间:2009/11/25 10:31:00
--  
ImportDBFile
用来将其他各式数据文件中指定表的数据合并到当前表中。

语法:
ImportDBFile(SourceFile, FileType,SourceGrid)

SourceFile  指定文件名
FileType    指定文件类型
           1 = Access 2000
           2 = dBase III
           3 = dBase IV
           4 = dBase 5.0
           5 = Excel 5.0
           6 = Excel 8.0
           7 = FoxPro 2.0
           8 = FoxPro 2.5
           9 = FoxPro 2.6
           10 = FoxPro 3.0
SourceGrid  指定表,对于dbf文件,无需设置这个参数。

例子:
ImportDBFile("c:\\NorthWind.xls",6,"Sheet1")
将Excel文件c:\\NorthWind.xls中的Sheet1表的数据追加到当前表中。

ImportDBFile("c:\\Orders.dbf",9)
将文件c:\\Orders.dbf的数据追加到当前表中,假定该DBF文件的类型是Foxpro 2.6


--  作者:ynbn
--  发布时间:2009/11/25 12:33:00
--  
谢谢了,我原来漏了个,"Sheet1")。