Forum Discussion
AlexKaras
Champion Level 2
14 years agoHi,
I think that the problem is because of the semicolon in the loop line:
for i: = 0 to RowCount - 1 do;
The semicolon means that you have a loop with empty body and when the loop is over, the i variable has value of 1 as expected and observed.
Just remove semicolon
for i: = 0 to RowCount - 1 do
and try your code.
I think that the problem is because of the semicolon in the loop line:
for i: = 0 to RowCount - 1 do;
The semicolon means that you have a loop with empty body and when the loop is over, the i variable has value of 1 as expected and observed.
Just remove semicolon
for i: = 0 to RowCount - 1 do
and try your code.