complete progress bar with variable - Forum

Forum Navigation
You need to log in to create posts and topics.

complete progress bar with variable

Hi there.

How can I complete a progress bar with getting the value of timer and set it as progress bar variable?

For example the value of my timer is 5000. And progress bar should complete in 5000 and if timer change to 6500, the variable of progress bar should change to the new value of timer.

Thanks

@tilesoft please check the attached sample and let me know if you have any questions.
Regards.

Uploaded files:
  • You need to login to have access to uploads.
tilesoft has reacted to this post.
tilesoft

Thank you sir! It works well.

I have another question. How can I style the progress bar; For example transparent background and orange line in it.

Thanks

@tilesoft try adding this CSS code to Project > Properties > Styles:

#ProgressBar1{
  background-color:transparent;
  border: 1px solid orange;
}
.progress-bar{
   background-color:orange;
}

Regards.