How to get Autocomplete functionality without a control
Posted
by rahulchandran
on Stack Overflow
See other posts from Stack Overflow
or by rahulchandran
Published on 2010-03-28T00:08:52Z
Indexed on
2010/03/28
0:23 UTC
Read the original article
Hit count: 582
.NET
If you supply a list of strings to an edit control and set the autocomplete mode and source then you automatically get autocomplete functionality. My question is can I get the same functionality in .NET somewhere without a control. In other words I want something like:
string[] ProgressivePartialMatch( string[] Strings, string MatchText )
and so I want the strings back that would have showed up in the autocomplete, so to speak.
© Stack Overflow or respective owner