Creating a build like window

  • Thread starter Thread starter Amendra
  • Start date Start date
A

Amendra

Hi ,

Does any one know how to create a window similar to the Build window in
..VS.NET using C#.

We have used a text box, but, this does no seem to be scrolling down as in
the Build window in VS.NET.

Thanks
Amendra.
 
textBox1.SelectionStart = textBox1.Text.Length;

textBox1.SelectionLength = 0;

textBox1.ScrollToCaret();
 
Back
Top