hi all
in the following code :
if i put a breackpoint inside any line inside the inner (backwards) loop , e.g
If i > catplaces.Get(catcount.Text-1) Then
the breackpoint is never reacheable, and indeed the code is not executed.
what am i missing here ?
in the following code :
B4X:
For i =0 To Q_count.Text-1
For ii = 0 To catcount.Text - 1 Step -1
If i > catplaces.Get(catcount.Text-1) Then
question(i).catego = cat.Get(catcount.Text-1)
End If
If i <= catplaces.Get(ii) Then
question(i).catego = cat.Get(ii)
End If
Next
Next
if i put a breackpoint inside any line inside the inner (backwards) loop , e.g
If i > catplaces.Get(catcount.Text-1) Then
the breackpoint is never reacheable, and indeed the code is not executed.
what am i missing here ?