AutoComplete for textbox controls in NETcf

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
 
G

Guest

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.
 
V

Victor Espina

Thanks for the typo and empty tip. I'll make the changes ASAP.

Regards

Victor Espina
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top