CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Mar 2009
    Posts
    9

    How to expand the console?

    Hello everybody,

    I have a programme that shows me about 4000 values one below the other. Obviously my the console shows me some 90 values, so from a certain time the scroll bar doesn't become smaller.

    How I expand the console so that I can see all the numbers?

  2. #2
    Join Date
    Jun 2002
    Location
    Stockholm, Sweden
    Posts
    1,641

    Re: How to expand the console?

    Programmatically - I don't know.

    Manually, right-click in the top-left corner of the console and choose Properties.
    In the Layout tab, adjust the Height of the Screen Buffer Size.
    Nobody cares how it works as long as it works

  3. #3
    Join Date
    Feb 2009
    Location
    India
    Posts
    444

    Smile Re: How to expand the console?

    Programmatically you can use SetConsoleWindowInfo function to resize the console window.
    «_Superman
    I love work. It gives me something to do between weekends.

    Microsoft MVP (Visual C++)

  4. #4
    Join Date
    Mar 2009
    Posts
    9

    Arrow Re: How to expand the console?

    Hey,
    thank a lot, I got it now.

    Here's my new problem:

    http://www.codeguru.com/forum/showth...49#post1820949

    :-)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured