A simple, scrollable, output display window

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?Utf-8?B?Um9nZXIgR2FycmV0dA==?=

    #1

    A simple, scrollable, output display window

    I'm writing a visual studio C# program. I have my form with a number of
    controls. I also want a simple scrollable window in which I can
    programmaticall y add text as the program is running. I want to use it to show
    diagnostic output as the program runs. It should be fairly simple to do, yes?
    Well, I can't figure out what control to use. How do I do this?
  • Peter Duniho

    #2
    Re: A simple, scrollable, output display window

    On 2007-11-16 16:03:00 -0800, Roger Garrett
    <RogerGarrett@d iscussions.micr osoft.comsaid:
    I'm writing a visual studio C# program. I have my form with a number of
    controls. I also want a simple scrollable window in which I can
    programmaticall y add text as the program is running. I want to use it to show
    diagnostic output as the program runs. It should be fairly simple to do, yes?
    Well, I can't figure out what control to use. How do I do this?
    The TextBox control can be used as a simple implementation of something
    like that.

    Pete

    Comment

    • =?Utf-8?B?Um9nZXIgR2FycmV0dA==?=

      #3
      Re: A simple, scrollable, output display window


      Thank you

      Comment

      • Ian Semmel

        #4
        Re: A simple, scrollable, output display window

        I use a ListBox for this.
        >
        I'm writing a visual studio C# program. I have my form with a number of
        controls. I also want a simple scrollable window in which I can
        programmaticall y add text as the program is running. I want to use it
        to show
        diagnostic output as the program runs. It should be fairly simple to
        do, yes?
        Well, I can't figure out what control to use. How do I do this?

        Comment

        Working...