Funktionreferenz


_GUICtrlComboBox_GetCurSel

Beschreibung anzeigen in

Ermittelt den Index des momentan markierten Items

#include <GuiComboBox.au3>
_GUICtrlComboBox_GetCurSel ( $hWnd )

Parameter

$hWnd Control-ID / Handle des Controls

Rückgabewert

Erfolg: der 0-basierende Index des momentan markierten Items
Fehler: -1

Bemerkungen

- - - - - - - - Erklärung der Controls - - - - - - - -

Verwandte Funktionen

_GUICtrlComboBox_SetCurSel

Beispiel

#include <GuiComboBox.au3>
#include <GUIConstantsEx.au3>
#include <MsgBoxConstants.au3>

Example()

Func Example()
    ; Erstellt eine GUI
    GUICreate("ComboBox: Ermittelt die aktuelle Auswahl (v" & @AutoItVersion & ")", 500, 296)
    Local $idCombo = GUICtrlCreateCombo("", 2, 2, 396, 296)
    GUISetState(@SW_SHOW)

    ; Fügt Dateien hinzu
    _GUICtrlComboBox_BeginUpdate($idCombo)
    _GUICtrlComboBox_AddDir($idCombo, @WindowsDir & "\*.exe")
    _GUICtrlComboBox_EndUpdate($idCombo)

    ; Wählt ein Item aus
    _GUICtrlComboBox_SetCurSel($idCombo, 2)

    ; Ermittelt die aktuelle Auswahl
    MsgBox($MB_SYSTEMMODAL, "Information", "aktuelle Auswahl: " & _GUICtrlComboBox_GetCurSel($idCombo))

    ; Die Schleife wiederholt sich, bis der Benutzer die Beenden-Aktion der GUI auslöst.
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>Example