###User Defined Function###
_GUICtrlListBox_SelItemRange

###Description###
Select one or more consecutive items in a multiple-selection list box

###Syntax###
#include <GuiListBox.au3>
_GUICtrlListBox_SelItemRange ( $hWnd, $iFirst, $iLast [, $fSelect = True] )


###Parameters###
@@ParamTable@@
$hWnd
	Control ID/Handle to the control
$iFirst
	0-based index of the first item to select
$iLast
	0-based index of the last item to select
$fSelect
	[optional] Specifies how to set the selection.
	If this parameter is True, the string is selected and highlighted.
	If it is False, the highlight is removed and the string is no longer selected.
@@End@@

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


###Remarks###
Use this message only with multiple-selection list boxes.
This message can select a range only within the first 65,536 items.


###Related###
_GUICtrlListBox_SelItemRangeEx


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