B4J Question [SOLVED] Refresh label text

jroriz

Active Member
Licensed User
Longtime User
Hi.

I have to refresh a label, but based on my needs, sleep cannot be used and the timer did not do the job.

B4X:
Sub LongProcess

    For x = 1 To 10000000
        mylabel.Text = x
        'Sleep(0) - cannot be here because sleep = return, and i cannot leave the sub before it ends
        'Timer also did not work.
    Next
End Sub
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…