arrays - C# Combobox show in suggest list if string includes -


  private void form1_load(object sender, eventargs e)     {         string[] list = { "tomato", "banana", "apple" };         autocompletestringcollection mylist = new autocompletestringcollection();         mylist.addrange(list);         combobox1.autocompletecustomsource = mylist;     } 

when enter "ana" combobox want see banana in suggest list.

i researched cannot find code doing this.

thanks in advance.

hello have post

hope helps, it's wpf solution


Comments

Popular posts from this blog

database - VFP Grid + SQL server 2008 - grid not showing correctly -

jquery - Set jPicker field to empty value -

.htaccess - htaccess convert request to clean url and add slash at the end of the url -