51Testing软件测试论坛
标题:
请问下如何判断QTP的DataTable中是否存在某个sheet页呢?
[打印本页]
作者:
zte_boy
时间:
2008-4-1 15:55
标题:
请问下如何判断QTP的DataTable中是否存在某个sheet页呢?
请问下如何判断QTP的DataTable中是否存在某个sheet页呢?
作者:
bagwell333
时间:
2008-4-1 16:40
Dim sheetcount, dtsheetobj, yourSheetName, isFound
isFound=False
yourSheetName="Action1"
sheetcount = DataTable.GetSheetCount
For i=1 to sheetcount
If DataTable.GetSheet(i).name = yourSheetName Then
isFound=True
Exit For
End If
Next
If isFound=True Then
MsgBox("haha, found")
Else
MsgBox("Not found!")
End If
作者:
bagwell333
时间:
2008-4-1 16:41
更新一下,那个dtsheetobj没有用。
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2