Line progress bar progress along with timer.
Hi,
I'm working on a screen where in I need to display both down timer (using text box) and a line progress bar.
I want the progress bar to fill along with the down timer.
Example : Lets say my timer is running down for 10 seconds, I want the line progress to complete filling within 10 seconds.
Can somebody please suggest how this can be achieved?
I feel passing the right value to setvalue will be the solution for this issue.
ProgressBar.setValue(tick + 1);
ProgressBar.invalidate();
Please guide.