I am developing an application and as a function, I need to resize more than 500 image objects on the screen. Obviously I can do that in a loop and change each image one by one but the problem is that this process is very expensive and it took time to be done since resizing each object causes the page to redraw.
I am looking for something like ListBox.SetUpdate (but for the page) that suspends the listbox object and you can manipulate elements and at the end set to update. Is there such a function for the pages?
I am looking for something like ListBox.SetUpdate (but for the page) that suspends the listbox object and you can manipulate elements and at the end set to update. Is there such a function for the pages?
Comment