Hi, I'm looking for a solution like the one discussed here, but for C# WinForms. Link here
To rephrase, is it possible to do textbox autocompletes in C# using a single data source with multiple lines? Result should be like Gmail's TO: field in creating emails, or similarly MS Outlook's TO: field.
For example, the data set might be:
"John Williams" ([email protected])
"Bob Johnson" ([email protected])
"Willy Johnston" ([email protected])
"Willy Williams" ([email protected])
... and I should be able to type "john" and all four would be suggested. If I typed "johns" then the second and third entries would be suggested.
This is more advanced than the auto-complete provided by .NET by default.
Thanks, -Greg