New Auto complete property in windows textbox and DropdownList in dot net 2.0
Posted on 10/3/2006 5:10:39 AM
in #Windows Programming
Hi
A new feature added to the Textbox and the DropdownList
control in Dot net 2.0 is Auto complete. This allows the user to select the
value from previously entered values. User’s recent history is used to display
the values.
To enable the AutoComplete property we can use one the three
values.
- Suggest
- Appends the rest of the suggested string to the existing entry. The suggested
string appears highlighted.
- Suggest
- Displays a drop-down list populated with one or more suggested
completion strings.
- SuggestAppend
- Implements both the Suggest and Append options.
The type of Auto complete values displayed can be controlled
by AutoCompleteSource property
Hope this helps Thanks Vikram
|
Posted on 2/10/2007 12:48:08 AM
Can u pls tell me, how can i use a textbox with a AutoComplete Property.
|
Posted on 11/28/2007 8:52:08 AM
Im not seeing this property in a Dropdown listbox control in Dot Net 2.0 can you tell me where I might find this?
I have a C# application where I am attempting to make the autocomplete functionality of my dropdown listbox behave the same way in IE as it already does in Firefox.
|
Posted on 4/22/2008 7:27:20 PM
Is there any provision to display dropdown as soon as textbox get focused?
|