Function Reference


_GUICtrlComboBoxEx_GetList

Retrieves all items from the list portion of a ComboBox control

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

Parameters

$hWnd Handle to the control

Return Value

Returns a delimited string of all ComboBox items.

Remarks

Default delimiter is "|" this can be change using the Opt("GUIDataSeparatorChar", "new delimiter").

Related

_GUICtrlComboBoxEx_GetListArray

Example

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

Global $g_idMemo

Example()

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

        Opt("GUIDataSeparatorChar", $sDelimiter)

        ; Create GUI
        $hGUI = GUICreate("ComboBoxEx Get List", 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)

        ; Add files
        _GUICtrlComboBoxEx_AddDir($hCombo, "", $DDL_DRIVES, False)

        ; Get List
        $aItem = StringSplit(_GUICtrlComboBoxEx_GetList($hCombo), $sDelimiter)

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

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

; Write a line to the memo control
Func MemoWrite($sMessage)
        GUICtrlSetData($g_idMemo, $sMessage & @CRLF, 1)
EndFunc   ;==>MemoWrite