How to display progress of a for-next loop
Posted: Thu Mar 23, 2023 7:10 pm
I have this part of my program that downloads some files and I would like to have a way to display that something is going on so the user doesnt think the app is frozen. The program is RapaGUI based. I did take a look at the progress bar in the Dialogs example, but I am not sure how to implement it in this case.
Alternatively I could also settle just with a small window displaying "Downloading, this might take a a few minutes", that automaticly closes when download finishes.
This For-Next loop processes each year and fetches the corresponding files.
Alternatively I could also settle just with a small window displaying "Downloading, this might take a a few minutes", that automaticly closes when download finishes.
This For-Next loop processes each year and fetches the corresponding files.
Code: Select all
For i = 1979 To GetDateNum(#DATEYEAR)
(code to download the files and save them)
Next