help with AutoCompleteSource prop of TextBox

hi all.in my c#2005 winform,

i want to use the AutoCompleteSource/mode of my textbox.

i want that all the data that the users enters will be "saved" and then the autocomplete will suggest entrys from that list.

where should i "save" this list

how can i do it




Answer this question

help with AutoCompleteSource prop of TextBox

  • Sarvesh Jain

    Hi,

    If you want to save and edit the list yourself or by user, it is quite good for you to set the AutoCompleteSource to CustomSource and organize the data in AutoCompleteCustomSource (you called "list").

    Thank you



  • help with AutoCompleteSource prop of TextBox