Sélectionne une chaîne, ou plusieurs, dans une ListBox à sélection multiple
#include <GuiListBox.au3>
_GUICtrlListBox_SetSel ( $hWnd [, $iIndex = -1 [, $iSelect = -1]] )
$hWnd | ID/handle du contrôle |
$iIndex | [optionnel] Index de l'élément, compté à partir de 0 |
$iSelect | [optionnel] Indique comment définir la sélection. |
Succès: | Retourne True. |
Échec: | Retourne False. |
Un $iIndex égal à -1 provoque le basculement sélectionner/désélectionner de tous les éléments (ignore $iSelect).
#include <GUIConstantsEx.au3> #include <GuiListBox.au3> #include <MsgBoxConstants.au3> Example() Func Example() Local $idListBox ; Crée une GUI GUICreate("List Box Set Sel", 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électionnes des éléments _GUICtrlListBox_SetSel($idListBox, 3) _GUICtrlListBox_SetSel($idListBox, 4) _GUICtrlListBox_SetSel($idListBox, 5) ; Affiche l'état de sélection d'un élément MsgBox($MB_SYSTEMMODAL, "Information", "Item 5 Selected: " & _GUICtrlListBox_GetSel($idListBox, 4)) ; Boucle jusqu'à ce que l'utilisateur quitte. Do Until GUIGetMsg() = $GUI_EVENT_CLOSE GUIDelete() EndFunc ;==>Example