12-20-2010, 10:13 AM
Hi Manish,
I am able to solve it partialy. I used Standard checkpoint to get the required text.
I used following For loop.
Here i am getting the expected value. I have set the Run properties to Run for all iteration.
But here it runs 9 times.
On first iteration it displayed the expected value. then for second and third the msgbox is blank.
Again for fourth iteration it displayed the expected value of Second parameter i add for Fly From and Fly To. Fifth, sixth are again blank. so on...
Is there anything wrong with For....Next loop ?
I am able to solve it partialy. I used Standard checkpoint to get the required text.
I used following For loop.
Code:
for i=1 to Datatable.rowcount
set Datatable.currentrow
msgbox Datatable.value("Datatable column Name",dtGlobalSheet)
Next
Here i am getting the expected value. I have set the Run properties to Run for all iteration.
But here it runs 9 times.
On first iteration it displayed the expected value. then for second and third the msgbox is blank.
Again for fourth iteration it displayed the expected value of Second parameter i add for Fly From and Fly To. Fifth, sixth are again blank. so on...
Is there anything wrong with For....Next loop ?