Remember that that a call to Sleep or Wait For in a resumable sub causes the code flow to return to the parent. Example: Sub Button1_Click Sum(1, 2) Log("after sum") End Sub Sub Sum(a As Int, b As Int) Sleep(100) 'this will cause the code flow to return to the parent Log(a + b) End Sub...
Estimad@s, Revisando el tutorial: https://www.b4x.com/android/forum/threads/b4x-okhttputils2-with-wait-for.79345/ Ahora definitivamente ya estoy mas confundido... NO entiendo la diferencia entre "Descargando dos recursos, uno tras otro:" Sub DownloadTwoLinks Dim j As HttpJob...