How to use ProgressBar for SaveToFile method ? Actually I want to save a resource to a file, and have progress bar update from 0% to 100% as it saves, how do I do that?
How to use ProgressBar for SaveToFile method ? Actually I want to save a
Share
You can make your own TResourceStream descendant like in the code below. But for large resources (and that’s probably the case, otherwise you wouldn’t have to see progress) it’s better to “wrap” this in a separate thread. Yell if you need help with that.