Ermittelt die Anzahl von Items
#include <GuiComboBox.au3>
_GUICtrlComboBox_GetCount ( $hWnd )
$hWnd | Control-ID / Handle des Controls |
Erfolg: | die Anzahl von Items |
Fehler: | -1 |
- - - - - - - - Erklärung der Controls - - - - - - - -
#include <GuiComboBox.au3>
#include <GUIConstantsEx.au3>
#include <MsgBoxConstants.au3>
Example()
Func Example()
Local $idCombo
; Erstellt eine GUI
GUICreate("ComboBox: Ermittelt die Anzahl", 400, 296)
$idCombo = GUICtrlCreateCombo("", 2, 2, 396, 296)
GUISetState(@SW_SHOW)
; Fügt Dateien hinzu
_GUICtrlComboBox_BeginUpdate($idCombo)
_GUICtrlComboBox_AddDir($idCombo, @WindowsDir & "\*.exe")
_GUICtrlComboBox_EndUpdate($idCombo)
; Ermittelt die Anzahl
MsgBox($MB_SYSTEMMODAL, "Information", "Anzahl: " & _GUICtrlComboBox_GetCount($idCombo))
; Die Schleife wiederholt sich, bis der Benutzer die Beenden-Aktion der GUI auslöst.
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>Example