combobox



  • hi,

    wie bekomme ich das hin das wenn ich in eine combo box spalten hinzufüge das er automatisch mit scrollt?



  • Was genau meinst Du damit?
    Willst Du, dass immer wenn ein neues Item eingefügt wird dieses Item angezeigt wird?
    Falls ja:

    comboBox.Items.Add("Neu");   // Neuer Eintrag
    comboBox.SelectedIndex = comboBox1.Items.Count - 1;    // wählt letztes Item aus
    comboBox.Select();    // markiert Item blau
    

Anmelden zum Antworten