This piece of code
works fine as long as I don't change the value of index1.
As soon as I insert index1=50 then it doesn't work right.
It worked fine in vb6 but not in vb.net. Any ideas why it doesn't work.
Thanx
Code:
If index1 < 1323 Then index1 = index1 + 1 Else 'MsgBox "This is the last record of the data" Label1.Caption = line_value1(index1) End If
As soon as I insert index1=50 then it doesn't work right.
It worked fine in vb6 but not in vb.net. Any ideas why it doesn't work.
Thanx
Comment