Hallo,
ich habe eine gefüllte ComboBox und einen String.
Jetzt möchte ich den Inhalt des Strings in der ComboBox suchen und "auswählen/markieren/an erste Stelle der Liste bringen".
Wie kann ich das realisieren??
Gruß, PingOfDeath
Programmieren - alles kontrollieren 4.941 Themen, 20.708 Beiträge
Vielleicht so?
ComboBox1.Items.Add("zeile1")
ComboBox1.Items.Add("zeile2")
ComboBox1.Items.Add("zeile3")
ComboBox1.Items.Add("zeile4")
ComboBox1.Items.Add("zeile5")
ComboBox1.SelectedIndex = 0
If ComboBox1.Items.Contains("zeile3") Then
For i = 0 To ComboBox1.Items.Count - 1
If ComboBox1.Items.Item(i) = "zeile3" Then
ComboBox1.SelectedIndex = i
Exit For
End If
Next
End If
mr.escape
hmmm, da stand ich wohl auf´m Schlauch - logisch ;-)
Danke!