Hi!
spent 2 days "fighting" with the following problem. I have a bunch of files to download with HttpUtils2:
I need to be able to build "progress bars" for each file and overall progress, so i focus on this class http://www.basic4ppc.com/forum/additional-libraries-classes-official-updates/19920-class-progress-bar-httputils2.html
It works fine with single file download, unfortunatly, i can't figure out how to expand this to get the result i want.
Please, advice how to tailor this for the mentioned task
Thank you
spent 2 days "fighting" with the following problem. I have a bunch of files to download with HttpUtils2:
B4X:
dim H( FilesNumber ) as HttpJob
for c = 0 to FilesNumber - 1
H( c ).Initialize( "", Me )
H( c ).JobName = c
H( c ).Download( FilesUrls( c ) )
Next
I need to be able to build "progress bars" for each file and overall progress, so i focus on this class http://www.basic4ppc.com/forum/additional-libraries-classes-official-updates/19920-class-progress-bar-httputils2.html
It works fine with single file download, unfortunatly, i can't figure out how to expand this to get the result i want.
Please, advice how to tailor this for the mentioned task
Thank you