up vote 2 down vote favorite
share [g+] share [fb]

does anyone know about a windows forms control that acts like the address bar of a browser?

it is just like a textbox, but to the right there is a dropdown menu that shows the history of previously entered text.

thanks a lot!

link|improve this question

76% accept rate
feedback

2 Answers

up vote 3 down vote accepted

Look at properties "AutoCompleteCustomSource", "AutoCompleteMode" and "AutoCompletesource" on TextBox class.

link|improve this answer
feedback

You can use a ComboBox for this. Just add the previous entries to the item list. If what you actually want is AutoComplete, the WinForms Edit control supports that natively.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.