|
2#
楼主 |
发表于 2007-5-21 23:23:37
|
只看该作者
table 有四列,name,id,key,rekey
若是如下程序
table = "d:\\sulin\\1.xls";
rc = ddt_open(table, DDT_MODE_READWRITE);
if (rc!= E_OK && rc != E_FILE_OPEN)
pause("Cannot open table.");
ddt_get_row_count(table,table_RowCount);
for(table_Row = 1; table_Row <= table_RowCount; table_Row ++)
{
ddt_set_row(table,table_Row);
ddt_set_var_by_row(table,"key","123");(好象是这样,具体的给忘了,但是这句话再脚本中绝对正确/)
}
for(table_Row = 1; table_Row <= table_RowCount; table_Row ++)
{ddt_val_by_row(table,i,"name");
report_msg(ddt_val_by_row(table,i,"name"));
#report_msg(ddt_val(table,"name"));也是空值
report_msg(ddt_val(table,"key"));#能显示密码值.
}
ddt_close(table);
无奈的很,请帮忙
(总是想不明白)为什么 我这样丛excel中导出数据不正确???
我在做登陆测试,要求输入用户名和密码. |
|