Obtient le nombre total d'�l�ments s�lectionn�s
#include <GuiListBox.au3>
_GUICtrlListBox_GetSelCount ( $hWnd )
$hWnd | ID/handle du contr�le |
Succ�s: | Retourne le nombre d'�l�ments s�lectionn�s. |
�chec: | Retourne -1 si l'ID ou le handle du contr�le est invalide. |
#include <GUIConstantsEx.au3> #include <GuiListBox.au3> #include <MsgBoxConstants.au3> Example() Func Example() Local $idListBox ; Cr�e une GUI GUICreate("List Box Get Sel Count", 400, 296) $idListBox = GUICtrlCreateList("", 2, 2, 396, 296, BitOR($LBS_STANDARD, $LBS_EXTENDEDSEL)) GUISetState(@SW_SHOW) ; Ajoute des cha�nes _GUICtrlListBox_BeginUpdate($idListBox) For $iI = 1 To 9 _GUICtrlListBox_AddString($idListBox, StringFormat("%03d : Random string", Random(1, 100, 1))) Next _GUICtrlListBox_EndUpdate($idListBox) ; S�lectionne quelques �l�ments _GUICtrlListBox_SetSel($idListBox, 3) _GUICtrlListBox_SetSel($idListBox, 4) _GUICtrlListBox_SetSel($idListBox, 5) ; Afficher le nombre d'�l�ments s�lectionn�s MsgBox($MB_SYSTEMMODAL, "Information", "Items Selected: " & _GUICtrlListBox_GetSelCount($idListBox)) ; Boucle jusqu'� ce que l'utilisateur quitte. Do Until GUIGetMsg() = $GUI_EVENT_CLOSE GUIDelete() EndFunc ;==>Example