B4X:
Private Sub Test
Dim ProgrBarStep As Double
ProgrBarStep = 100 / 789
AnotherProgressBar1.Value = 0
AnotherProgressBar1.Visible = True
Sleep(0)
For i = 1 To 789
AnotherProgressBar1.Value = i * ProgrBarStep
Sleep(5)
Next
AnotherProgressBar1.Visible = False
End Sub
Attachments
Last edited: