Sorting and LVN_ITEMCHANGED
I create a class derived from CListCtrl. This class is like ListCtrl in Windows Explorer in Details View. You can create new file, rename, or delete, re-arrange, ...
Now I have a problem. My class do some jobs when LVN_ITEMCHANGED is notified. When I re-order the list, the OnItemChanged is called many times that is equal to the Item Count. This made me annoyed and wasted time. If anyone know how to re-order the list without notifiying LVN_ITEMCHANGED, please let me know. Thanks in advanced.
Ah, yeah, my class uses SortItems(...) function of CListCtrl to sort. Everything seems good except the above problem.

