###User Defined Function###
_GUICtrlListView_RegisterSortCallBack

###Description###
Register the Simple Sort callback function

###Syntax###
#include <GuiListView.au3>
_GUICtrlListView_RegisterSortCallBack ( $hWnd [, $fNumbers = True [, $fArrows = True]] )


###Parameters###
@@ParamTable@@
$hWnd
	Handle of the control
$fNumbers
	[optional] Treat number strings as numbers
$fArrows
	[optional] Draws a down-arrow/up-arrow on column selected
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	True.
Failure:	False.
@@End@@


###Remarks###
For each call to <a href="_GUICtrlListView_RegisterSortCallBack.htm">_GUICtrlListView_RegisterSortCallBack()</a> there must be a call to <a href="_GUICtrlListView_UnRegisterSortCallBack.htm">_GUICtrlListView_UnRegisterSortCallBack()</a> when done (before exit).

It is up to the user to call <a href="_GUICtrlListView_UnRegisterSortCallBack.htm">_GUICtrlListView_UnRegisterSortCallBack()</a> for each <a href="_GUICtrlListView_RegisterSortCallBack.htm">_GUICtrlListView_RegisterSortCallBack()</a> call made.

This is an alternative to the <a href="_GUICtrlListView_SimpleSort.htm">_GUICtrlListView_SimpleSort()</a>.

This function will sort listviews that have icons, checkboxes, sub-item icons.


###Related###
_GUICtrlListView_UnRegisterSortCallBack, _GUICtrlListView_SortItems


###Example###
@@IncludeExample@@
