views:

227

answers:

1

Does anybody know of any solution how to provide autocompletion suggestions (say to help input keywords from a list) for a multiline WinForms TextBox/RichTextBox?

For a single line textbox, this is very easy. Multiline is obviously not implemented directly by Winforms.

+1  A: 

I guess you could have a look at this article from codeproject.com, which seems to correspond to what you are looking for.

Shimrod