Funktionreferenz


_GUICtrlComboBoxEx_GetList

Beschreibung anzeigen in

Ermittelt alle Items von einem Listenabschnitt eines ComboBox Controls

#include <GuiComboBoxEx.au3>
_GUICtrlComboBoxEx_GetList ( $hWnd )

Parameter

$hWnd Handle des Controls

Rückgabewert

Gibt eine getrennten String aller ComboBox Items zurück.

Bemerkungen

Das Standard Trennzeichen ist "|". Dies kann durch die Option Opt("GUIDataSeparatorChar", "neues Trennzeichen") geändert werden

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

Verwandte Funktionen

_GUICtrlComboBoxEx_GetListArray

Beispiel

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

Global $g_idMemo

Example()

Func Example()
    Local $hGui, $aItem, $sDelimiter = ";", $hCombo

    Opt("GUIDataSeparatorChar", $sDelimiter)

    ; Erstellt eine GUI
    $hGui = GUICreate("ComboBoxEx: Ermittelt alle Items", 400, 300)
    $hCombo = _GUICtrlComboBoxEx_Create($hGui, "", 2, 2, 394, 100)
    $g_idMemo = GUICtrlCreateEdit("", 2, 32, 396, 266, 0)
    GUICtrlSetFont($g_idMemo, 9, 400, 0, "Courier New")
    GUISetState(@SW_SHOW)

    ; Fügt Dateien hinzu
    _GUICtrlComboBoxEx_AddDir($hCombo, "", $DDL_DRIVES, False)

    ; Ermittelt alle Items
    $aItem = StringSplit(_GUICtrlComboBoxEx_GetList($hCombo), $sDelimiter)

    For $x = 1 To $aItem[0]
        MemoWrite($aItem[$x])
    Next

    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
EndFunc   ;==>Example

; Gibt eine Zeile im Memo-Fenster aus
Func MemoWrite($sMessage)
    GUICtrlSetData($g_idMemo, $sMessage & @CRLF, 1)
EndFunc   ;==>MemoWrite