Hi,
I've been searching for a control that gives me the ability to add intellisense to my textbox.
If the user is typing pat. I would like to create an intellisense out of an existing collection to select the name of that object.
So I' m not searching for an autocomplete texbox but something like in the editor of visual studio, when i'm writing text in a C sharp file.
Does anyone know a control that can do that?
Greetings
Loading
CodyPosted Mar 31, 2010, 11:04 PM
I plan on implementing Intellisense features into a custom syntax highlighting box that im working on.
I advise, if you plan on having it change from time to time, keep a few arrays of the strings that will be displayed in the auto complete. And have a listbox on your screen that you search through based on the text being type. You can use the on textchanged event and hold a string that you can reset when the control is clicked or a space or enter button is pressed. and when you use backspace i advise you trim the string by 1.
Be sure to update the search through your list box with each text changed event though.
Peter DerwaPosted Jun 26, 2009, 7:38 AM
Mahesh ChandPosted Jun 26, 2009, 7:20 AM
Peter DerwaPosted Jun 26, 2009, 2:02 AM
Mahesh ChandPosted Jun 25, 2009, 9:20 AM
GeethaPosted Jun 25, 2009, 7:49 AM
-Gera
Peter DerwaPosted Jan 12, 2009, 9:04 AM
Greetings
Mahesh ChandPosted Jan 12, 2009, 8:11 AM
Here is one article on how to implement it.
http://www.c-sharpcorner.com/UploadFile/lycj/autocomplete-textbox12222008072614AM/autocomplete-textbox.aspx