I have a large amount of items in a listBox called listBox1. I also have a textBox (textBox1) at the top. I want to be able to type into the textBox and the listBox searches through it's item's and finds ones that contain what I am typing.
For example, say the listBox contains
"Cat"
"Dog"
"Carrot"
and "Brocolli"
If I start typing the letter C, then I want it to show both Cat and Carrot, when I type a it should keep showing them both, but when I add an r it should remove Cat from the list. Is there anyway to do this?
TextBox
andListBox
are not part of pure C#... – stakx - no longer contributing