I have a application that will capture the screen and I want to write the captured information to an array, this takes AGES as the array ends up being +2million values. I am iterating and adding the values to the array, is there any way quicker (eg binary operations)? Should it be this slow? Why is it?
Share
Figured out why it was so slow, it was because I was using ReDim on every iteration of the loop – thanks for the help anyways
Martin