Ermittelt alle Items eines ComboBox Controls
#include <GuiComboBox.au3>
_GUICtrlComboBox_GetListArray ( $hWnd )
| $hWnd | Control-ID / Handle des Controls |
- - - - - - - - Erklärung der Controls - - - - - - - -
#include "Extras\HelpFileInternals.au3"
#include <DirConstants.au3>
#include <GuiComboBox.au3>
#include <GUIConstantsEx.au3>
Example()
Func Example()
Local $aList, $idCombo
; Erstellt eine GUI
GUICreate("ComboBox: Stellt die Liste im Array dar", 400, 296)
$idCombo = GUICtrlCreateCombo("", 2, 2, 396, 296)
_MemoCreate(2, 32, 396, 266, 0)
GUISetState(@SW_SHOW)
; Fügt Dateien hinzu
_GUICtrlComboBox_AddDir($idCombo, "", $DDL_DRIVES, False)
; Ermittelt die Liste
$aList = _GUICtrlComboBox_GetListArray($idCombo)
For $x = 1 To $aList[0]
_MemoWrite($aList[$x])
Next
; Die Schleife wiederholt sich, bis der Benutzer die Beenden-Aktion der GUI auslöst.
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>Example