I'm trying to create a search tool and would like to display the results in a text box, much like the one contained in Visual Studio - this means that for long searches results will be appended to the end of the text box while the user is attempting to look at the results at the top of the text box.
At the moment I'm using a standard textbox, however it has many problems:
- The text box flickers madly while the search is in progress
- Its not possible for the user to scroll while results are being appended to the box
- Its not possible for the user to copy and paste results in the text box while results are being appended.
Are there any ways of working around these issues, or should I look into using another control / creating my own?