If you send a list of lines to an edit control and set the autocomplete mode and source, you automatically get autocomplete functions. My question is: can I get the same functionality in .NET somewhere without control. In other words, I want something like:
string[] ProgressivePartialMatch( string[] Strings, string MatchText )
and so I want the lines that might appear in autocomplete, so to speak.
source
share