Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
378
ProgressBar with text
posted

Hello,

I'm making file download and want to write something like "downloading 1of 5 files " over progressbar or maybe inside it.

How can I do it?

  • 37774
    Suggested Answer
    posted

    You can simply use the UltraProgressBar, which has functionality to automatically replace certain tokens with the corresponding value.  So, assuming you set the Minimum to 1, the Maximum to 5, and the Value to 1, you could set the Text of the UltraProgressBar to "Downloading [Value] of [Maximum]".  Then you would simply update the Value to whatever # you want to indicate the file being downloaded.

    -Matt