Hi,
just a short question.
I 've got a lisitview with a few columns and I want to register a different sort for two kinds of columns.
I 've got a solution, but I don't think it is a good one.
Example :
Col A = Names (Strings)
Col B = Age (Integers)
Right now I'm doing this:
1. _GUICtrlListView_RegisterSortCallBack
2. In my WM_NOTIFY
Case GUICtrlGetHandle($search_LV)
Switch $iCode
Case $LVN_COLUMNCLICK ; A column was clicked
Local $tInfo = DllStructCreate($tagNMLISTVIEW, $iLparam)
; Kick off the sort callback
;~ ConsoleWrite('SEARCH_LV Column geklickt' & @LF