Is it possible to get value of a text box, say at row 4 of a datarepeater.
I did it by moving control to it, but that does not work the way I want.
I used code DataRepeater1.currentIndex=5, and then picked the value. Is there any possibility of getting the value without moving control to this row. I mean the way we get value from datagridview (vrName=datagridview1.item(1,1).value)
Thanks
Furqan
You should use the DataRepeater’s BindingSource and navigate with MoveNext, MoveLast, MovePrevious and MoveFirst through it. There you can find your value without moving control to this row.