07-20-2010, 11:19 AM
(This post was last modified: 07-20-2010, 11:22 AM by sasmitakumari.)
those are for loop ending statements. If you need more details , search for "FOR loop" in QTP help file or google "For Loop +VB Script"
Code:
For i = 1 to a
For j = 1 to b
c = Tcount.GetCellData(i,j)
msgbox c 'here you should be able to see what each cell has data in that table.
Next j
Next i