Facing problem of "AnimatedCounter" not showing values.
I am calculating from resultset and showing the collection, expenses and balance values in animated counter. But for some strange reason the "Balance" counter is not showing numbers sometimes. I have put the video showing the problem.
All counters have same in setting other than color. Below is the code I use to update the counter.
I have added sleep each time, as trying to fix it, but no solution.
I am calculating from resultset and showing the collection, expenses and balance values in animated counter. But for some strange reason the "Balance" counter is not showing numbers sometimes. I have put the video showing the problem.
All counters have same in setting other than color. Below is the code I use to update the counter.
B4X:
ancColl.Value = nRcpTot
Sleep(1000)
ancExps.Value = nPayTot
Sleep(1000)
ancBala.Value = nRcpTot-nPayTot
Sleep(1000)