Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WinForms: Autocomplete in multiline textbox

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.

like image 422
Marek Avatar asked Jan 28 '10 11:01

Marek


1 Answers

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

like image 151
Shimrod Avatar answered Nov 04 '22 07:11

Shimrod