|
-
November 2nd, 1999, 02:14 AM
#1
Performance of ListView
Hi,
I need to know if there wasn't a quicker way to refresh my listview.
At the moment I'm using GetListCtrl().DeleteAllItems and then recreating the items in the list. This can take quite a while if there's hundreds of items in the listview. How do you do it?
Any ideas are welcome.
TIA.
-
December 22nd, 1999, 06:27 PM
#2
Re: Performance of ListView
Try this sequence:
GetListCtrl().SetRedraw(FALSE);
GetListCtrl().DeleteAllItems();
GetListCtrl()FillEverythingin();
GetListCtrl().SetRedraw(TRUE);
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|