AutoComplete for textbox controls in NETcf

  • Thread starter Thread starter Victor Espina
  • Start date Start date
V

Victor Espina

Yesterday I spent several hours looking for a solution to implement
autocomplete functionality for textbox controls in .NETcf 1.0, and came
empty handed.

So, I ended up building my own solution using pure managed code in C#,
and it worked amazingly fine!

Here is the article:
http://www.victorespina.com/hs/en/index.php/AutoComplete_for_NETcf

I hope this can save others some hours of search and frustration. :)


Victor Espina
 
SelectionLenght should probably be SelectionLength (on the Wiki page).

Also, you should use string.Empty instead of "". This will save a new
string from being created every time you use it. It is a memory/performance
benefit.
 
Thanks for the typo and empty tip. I'll make the changes ASAP.

Regards

Victor Espina
 
Back
Top