C++Builder Tips: Speed up the display of list componentsIf you use a list component such as a TListBox or a TMemo, and you add or modify many items (lines, nodes,...), the visual response can becomes very slow. This is because after each change, the component is redrawn on the screen. For example, modifying 10000 items of a TListBox causes 10000 redraws, and that takes from several seconds to
several minutes, depending on the computer's speed and the complexity of the process.
int i; // ... ListBox1->BeginUpdate(); // add 10000 items: for (i = 0; i < 10000; i++) { ListBox1->Items->Add("123456789"); } ListBox1->EndUpdate; To give you an idea of the improvement, we timed how long it takes to add 10000 items to a TListBox(your PC may be
faster or slower): |