Ermittelt alle Items eines ComboBox Controls
#include <GuiComboBoxEx.au3>
_GUICtrlComboBoxEx_GetListArray ( $hWnd )
| $hWnd | Handle des Controls |
- - - - - - - - Erklärung der Controls - - - - - - - -
#include "Extras\HelpFileInternals.au3"
#include <DirConstants.au3>
#include <GuiComboBoxEx.au3>
#include <GUIConstantsEx.au3>
Example()
Func Example()
Local $hGui, $aItem, $hCombo
; Erstellt eine GUI
$hGui = GUICreate("ComboBoxEx: Ermittelt alle Items", 400, 300)
$hCombo = _GUICtrlComboBoxEx_Create($hGui, "", 2, 2, 394, 100)
_MemoCreate(2, 32, 396, 266, 0)
GUISetState(@SW_SHOW)
; Fügt Dateien hinzu
_GUICtrlComboBoxEx_AddDir($hCombo, "", $DDL_DRIVES, False)
; Ermittelt alle Items
$aItem = _GUICtrlComboBoxEx_GetListArray($hCombo)
For $x = 1 To $aItem[0]
_MemoWrite($aItem[$x])
Next
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
EndFunc ;==>Example