I have a data in gridview like that
Code
|
Name
|
1
|
A
|
2
|
B
|
3
|
C
|
4
|
D
|
5
|
E
|
6
|
F
|
7
|
G
|
8
|
H
|
9
|
I
|
10
|
J
|
11
|
K
|
I am displaying each row of Gridview with regular interval.
Required Output
when row 1 is displayed it should display Coun: A-1 in the lable.
after 1 minut when row 2 is displayed it should display Count: A-2 in the lable.
after 1 minut when row 3 is displayed it should display Count: A-3 in the lable.
when counting reachs at 4 it should restart counting from 1. for example
after 1 minut when row 4 is displayed it should display Count: A-1 again in the lable.
after 1 minut when row 5 is displayed it should display Count: A-2 again in the lable.
after 1 minut when row 6 is displayed it should display Count: A-3 again in the lable.
after 1 minut when row 7 is displayed it should display Count: A-1 again in the lable.
how to get solution plz