Click here to Skip to main content
15,890,579 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all

I am developng a C# windows application for Windows CE 5.0 Device using VS 2005, .Net Framework 2.0. But i could not find AutoComplete Property of the text box.

any clue how to support this feature for Windows CE 5.0
Posted
Updated 13-Jan-10 17:53pm
v2

1 solution

You will need to use something like the KeyDown\KeyUp event of the text box so that you can check what has been entered so far and if it matches a value or part of a value from your list make that entry the value of your text box.

Using the KeyDown\KeyUp events also allows you to use the Handled property or the KeyEventArgs to only allow values from your list to be entered.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900