ComboList Dropdownlist und Scrollleiste

  • Hey,
    weis jemand wie man eine ComboList erstellt, die nicht editierbar ist und gleichzeitig noch eine Scrolleiste hat?
    Vll stell ich mich grad echt dumm an,aber ich finde nix.

    [autoit]

    $Combo1 = GUICtrlCreateCombo("", 48, 64-50, 145, 100, $CBS_DROPDOWNLIST)

    [/autoit]

    Da Fehlt mir jetzt die Leiste.

    Dankeschön :).

    Einmal editiert, zuletzt von anno2008 (4. November 2011 um 23:14)

  • Erzeuge dein ComboBox so:

    [autoit]

    $idcboProg = GUICtrlCreateCombo("", 8, 8, 200, 25,BitOr($CBS_DROPDOWNLIST, $CBS_AUTOHSCROLL, $CBS_DISABLENOSCROLL, $WS_VSCROLL,$WS_TABSTOP))

    [/autoit]

    dann hast du eine Leiste. Diese ist solange inaktiv wie die Box ausreicht ohne scrollen zu müssen. Verantwortlich ist $CBS_DISABLENOSCROLL,

    mfg autoBert

    mfg autoBert