12-22-2009, 10:08 AM
Hi sweety,
You can use descriptive programming, and for getting total row count u use "Items count" in GetROProperty and according to that you just use a For loop till Items count and get the third row by Indexing
For ex:Code look like
Hope this will help you to solve your problem, please let me know if you need some information.
Thanks
Mahesh
You can use descriptive programming, and for getting total row count u use "Items count" in GetROProperty and according to that you just use a For loop till Items count and get the third row by Indexing
For ex:Code look like
Code:
Set obj = Description.create()
..
set count = Browse.("x").page.("x").weblist(x).getroproperty("Items count")
For i = 0 to count-1
if i = 3
Browse.("x").page.("x").weblist(x).select ("#") & i
end if
Next
Hope this will help you to solve your problem, please let me know if you need some information.
Thanks
Mahesh