Dim timer1 As Timer
timer1.Initialize("timer1", 1000)
dim prg As Int = 0
Sub timer1_tick
prg = banano.parseInt(prg) + 10
skprogressBar1.Percentage = prg
End Sub
Normal B4j timer code - above might not be accurate to the point!
Dim timer1 As Timer
timer1.Initialize("timer1", 1000)
dim prg As Int = 0
Sub timer1_tick
prg = banano.parseInt(prg) + 10
skprogressBar1.Percentage = prg
End Sub
Normal B4j timer code - above might not be accurate to the point!
You are right, it works correctly, the problem was that it was inside another sub and also inside a for loop, I took it out of the for and
I put the code inside the same sub