KZero Active Member Licensed User Longtime User May 15, 2018 #1 Hi, is reversed For loop supported in b4a ? B4X: For i = 10 To 1 Log(i) Next this code do nothing ! i think it was possible before ,isn't it ?
Hi, is reversed For loop supported in b4a ? B4X: For i = 10 To 1 Log(i) Next this code do nothing ! i think it was possible before ,isn't it ?
stevel05 Expert Licensed User Longtime User May 15, 2018 #2 It needs to be: B4X: For i = 10 To 1 Step -1 Log(i) Next Upvote 0