标题: 数据表GetcurrentRow问题!!麻烦大家来看看,帮助一下。谢谢。。。 [打印本页] 作者: zhengxiao025 时间: 2008-4-29 15:59 标题: 数据表GetcurrentRow问题!!麻烦大家来看看,帮助一下。谢谢。。。 我需要用到一个循环条件。为Do While DataTable.GetSheet("Action1").GetcurrentRow<=DataTable.GetSheet("Action1").GetRowCount。。。。。但是最后出来了死循环。检查时发现。循环到最大行再用DataTable.GetSheet("Action1").SetNextRow时,Do While DataTable.GetSheet("Action1").GetcurrentRow的值变为了1。这是什么原因呀。难道数据表就是这样的。有没有什么解决办法呀。。。。作者: wyy83 时间: 2008-4-29 16:22
[转]总结DataTable从excel中读取数据的方法
Option explicit
Dim rowcount'存储数据总行数
Dim filepath'获取excel表格路径
Dim i'循环变量
filepath=pathfinder.Locate("webmail_option_preference_hintSendSuccess.xls")
datatable.Import(filepath)'excel表中只有一个sheet有数据使用Import,如果excel中多个sheet有数据,这里就要使用ImportSheet来指定具体导入哪一sheet表的数据了
rowcount=datatable.GetRowCount'统计行数
For i=0 to rowcount-1
datatable.GetCurrentRow '置当前行为活动行
send=datatable.Value("send")'这里Value("send")中的send为excel中的列名,是在设计测试数据时确定的
name1=datatable.Value("name1")'同上
。。。。。。
datatable.SetNextRow'下一行
If datatable.GetCurrentRow>rowcount Then '当前行大于总行数,退出循环
Exit for
End If
Next