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();
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top