Hi
i need ur help friends. i have a text box in which i am entering alpha. data .i want to know that how i can fetch data into textbox based on alphabet entered. i am working on c#.net
blah blah blah is here! blah blah » Close
1 answers
in the designer view in properties of the textbox set the following:
AutoCompleteMode -> SuggestAppend
AutoCompleteSource -> CustomSource
in the code store the needed texts to filter the text written in the textbox by adding the keys to the AutoCompleteSource. For example:
answered 2 years ago by:
1556