08-21-2008, 01:30 PM
Hi Anna,
Step1; Test-->Settings-->Run-->Select "Run On only one iteration" optionbutton.
Step2: In the Script, get the row count of datatable & store it in a variable as given below :
Step4: After the next Statement , you give the required command to be executed & now execute the script n see.......
I hope you got your requirement Solved.
Regards.
Sreekanth Chilam
Step1; Test-->Settings-->Run-->Select "Run On only one iteration" optionbutton.
Step2: In the Script, get the row count of datatable & store it in a variable as given below :
Code:
rc=datatable.getrowcount
step3: use the for loop here as given below :
for i=1 to rc
datatable.SetCurrentRow(i)
---------
---------
---------
--------
next
Step4: After the next Statement , you give the required command to be executed & now execute the script n see.......
I hope you got your requirement Solved.
Regards.
Sreekanth Chilam