To manipulate any control in InForm you must use the Control() array.Code: QB64: [Select]
Control(ProgressBar1).Min = 0 Control(ProgressBar1).Max = 11 'you mention you will be loading 11 files
Then, to update it, change the .Value property:Code: QB64: [Select]
Control(ProgressBar1).Value = Control(ProgressBar1).Value + 1
Update it every time a file has been downloaded.
I recommend treating SUB __UI_BeforeUpdateDisplay as if it was your main program loop for this type of operation.
Try it like this (see attachment).