RowCnt=Browser("Google").Page("title:=.*").WebTable(“name:= TTable").RowCount
Msgbox RowCnt
For r=1 to RowCnt
'This will loop through each row and tell count of column in each row.
ColCnt=Browser("Google").Page("title:=.*").WebTable(“name:=TTable").ColumnCount(r)
MsgBox intColCnt
Next
Msgbox RowCnt
For r=1 to RowCnt
'This will loop through each row and tell count of column in each row.
ColCnt=Browser("Google").Page("title:=.*").WebTable(“name:=TTable").ColumnCount(r)
MsgBox intColCnt
Next
No comments:
Post a Comment
Note: only a member of this blog may post a comment.