Funktionreferenz


_GUICtrlComboBox_AddString

Beschreibung anzeigen in

Fügt einen String hinzu

#include <GuiComboBox.au3>
_GUICtrlComboBox_AddString ( $hWnd, $sText )

Parameter

$hWnd Control-ID / Handle des Controls
$sText hinzuzufügender String

Rückgabewert

Erfolg: Der Index des neuen Strings
Fehler: -1

Bemerkungen

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

Verwandte Funktionen

_GUICtrlComboBox_DeleteString, _GUICtrlComboBox_InitStorage, _GUICtrlComboBox_InsertString, _GUICtrlComboBox_ResetContent

Beispiel

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

Example()

Func Example()
    Local $idCombo

    ; Erstellt eine GUI
    GUICreate("ComboBox: String hinzufügen", 400, 296)
    $idCombo = GUICtrlCreateCombo("", 2, 2, 396, 296)
    GUISetState(@SW_SHOW)

    ; Fügt Dateien hinzu
    _GUICtrlComboBox_AddDir($idCombo, "", $DDL_DRIVES, False)

    ; String hinzufügen
    _GUICtrlComboBox_AddString($idCombo, "Dieser String wurde hinzugefügt")

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