51Testing软件测试论坛

标题: 怎样在winrun下实现.xls文件的数据导入问题 [打印本页]

作者: yangtian9999    时间: 2005-11-14 11:55
标题: 怎样在winrun下实现.xls文件的数据导入问题
请各位帮忙~!

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

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


谢谢!!!
作者: Mac.Meng    时间: 2005-11-14 12:42
用数据驱动试试看~~
作者: yangtian9999    时间: 2005-11-14 13:28
谁能告诉我怎样使用具体的函数实现数据的导入
返回到具体的数值.
作者: sbandbt    时间: 2005-11-14 17:03
ddt_open();应该可以吧
作者: 梦醒十分    时间: 2005-11-22 18:06
#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[i]=val;
#pause(array[i]);
}
ddt_close(table);




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2