Hello again,
In my current script, I've tryed to do a Loop routine, similar to VB, but with the B4A rules.
The routine in VB is something like this:
I've tryed:
But, from the several results I get, the last one is always wrong - so I suspect that this Loop in B4A is not working properly mainly because it's running procedures2 in sequence of procedures1.
Any tips or workarounds on this issue?
Kind regards,
Kepler
In my current script, I've tryed to do a Loop routine, similar to VB, but with the B4A rules.
The routine in VB is something like this:
B4X:
Do
(...procedures1...)
If nt > sd Then
Exit Loop ' ---------- EXIT
End If
(...procedures2...)
Loop
I've tryed:
B4X:
Do Until (nt > sd)
(...procedures1...)
(...procedures2...)
Loop
But, from the several results I get, the last one is always wrong - so I suspect that this Loop in B4A is not working properly mainly because it's running procedures2 in sequence of procedures1.
Any tips or workarounds on this issue?
Kind regards,
Kepler
Last edited: