I have an application with a lot of controls TextBoxthat use autocomplete. Each of them uses AutoCompleteMode.CustomSourceto get autocomplete text from the associated one AutoCompleteStringCollection.
Whenever a user enters a new value in TextBox, he is added to the associated one AutoCompleteStringCollection, and at the end of the session all these collections are saved in a file in the user's home directory.
The problem is that there is no way to fix errors in these assemblies. In IE, controls using autocomplete controls let you scroll through an item in the autocomplete list and click Delto remove it. This does not work in .NET controls.
I would really like to avoid implementing my own interface for this. I am stuck? Is there any way to include this that I don't see?
source
share