I have a for loop with 15000 iterations, and i'd like to keep track of it using a microsoft progress bar. If i update the progress back at each iteration, it takes too much time. What's the best solution?
I have a for loop with 15000 iterations, and i'd like to keep track of it using a microsoft progress bar. If i update the progress back at each iteration, it takes too much time. And if i update it every say 500 iteration, the case box used to check that "i" is a multiple of 500 uses as much time (i'm talking about 14 seconds compared to a few milliseconds if no progress bar is used at all). Any clue? Thanks.
