Funktionreferenz


_GUICtrlComboBox_GetComboBoxInfo

Beschreibung anzeigen in

Ermittelt Informationen über die festgelegte ComboBox

#include <GuiComboBox.au3>
_GUICtrlComboBox_GetComboBoxInfo ( $hWnd, ByRef $tInfo )

Parameter

$hWnd Control-ID / Handle des Controls
$tInfo Infos die durch $COMBOBOXINFO definiert sind.

Rückgabewert

Erfolg: True
Fehler: False

Bemerkungen

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

Beispiel

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

Global $g_idMemo

Example()

Func Example()
    Local $tInfo, $idCombo

    ; Erstellt eine GUI
    GUICreate("ComboBox: Informationen ermitteln", 400, 296)
    $idCombo = GUICtrlCreateCombo("", 2, 2, 396, 296)
    $g_idMemo = GUICtrlCreateEdit("", 2, 32, 396, 266, 0)
    GUICtrlSetFont($g_idMemo, 9, 400, 0, "Courier New")
    GUISetState(@SW_SHOW)

    ; Fügt Dateien hinzu
    _GUICtrlComboBox_BeginUpdate($idCombo)
    _GUICtrlComboBox_AddDir($idCombo, @WindowsDir & "\*.exe")
    _GUICtrlComboBox_EndUpdate($idCombo)

    If _GUICtrlComboBox_GetComboBoxInfo($idCombo, $tInfo) Then
        MemoWrite("Handle der ComboBox ........: " & DllStructGetData($tInfo, "hCombo"))
        MemoWrite("Handle der EditBox .........: " & DllStructGetData($tInfo, "hEdit"))
        MemoWrite('Handle der "Drop-down"-Liste: ' & DllStructGetData($tInfo, "hList"))
    EndIf

    ; Die Schleife wiederholt sich, bis der Benutzer die Beenden-Aktion der GUI auslöst.
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>Example

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