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?
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