yangtian9999 发表于 2005-11-14 11:55:06

怎样在winrun下实现.xls文件的数据导入问题

请各位帮忙~!

我想把.xls文件中的一列数据导入到winrun下的一个数组中去???

数组中的数据就是那一列数据.


谢谢!!!

Mac.Meng 发表于 2005-11-14 12:42:43

用数据驱动试试看~~

yangtian9999 发表于 2005-11-14 13:28:01

谁能告诉我怎样使用具体的函数实现数据的导入
返回到具体的数值.

sbandbt 发表于 2005-11-14 17:03:52

ddt_open();应该可以吧

梦醒十分 发表于 2005-11-22 18:06:19

#test1.xls is a table which has a column named "id".

table="d:\\test1.xls";
ddt_close(table);
rc=ddt_open(table);
if(rc!=E_OK)
pause("Error");

ddt_get_row_count(table,row_count);

for(i=1;i<=row_count;i++)
{
val=ddt_val_by_row(table,i,"id");
array=val;
#pause(array);
}
ddt_close(table);
页: [1]
查看完整版本: 怎样在winrun下实现.xls文件的数据导入问题