In my application, I have several CListCtrl tables. I populate / update them with data from an array with a for loop. Inside the loop, I have to make some changes to the way I display the values, so data binding in any way is not possible at all.
The real problem is the time it takes to populate the table as it is redrawn row by row. If I turn the control invisible when it is full, and again make it visible when the cycle is complete, the whole method will be much faster!
Now I'm looking for a way to stop control from repainting to full. Or any other way to speed up the process.
c ++ mfc clistctrl
Talkingcode
source share