Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 62825
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T18:32:11+00:00 2026-05-10T18:32:11+00:00

I have a program that monitors debug messages and I have tried using a

  • 0

I have a program that monitors debug messages and I have tried using a TextBox and appended the messages to it but it doesn’t scale very well and slows way down when the number of messages gets large. I then tried a ListBox but the scrolling was snapping to the top when appending new messages. It also doesn’t allow for cut and paste like the text box does.

What is a better way to implement a console like element embedded in a winforms window.

Edit: I would still like to be able to embed a output window like visual studio but since I can’t figure out an easy way here are the two solutions I use. In addition to using the RichTextBox which works but you have to clear it every now and then. I use a console that I pinvoke. Here is a little wrapper class that I wrote to handle this.

 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Runtime.InteropServices;  namespace Con {    class Ext_Console     {       static bool console_on = false;        public static void Show(bool on,string title)       {          console_on = on;          if (console_on)          {             AllocConsole();             Console.Title = title;             // use to change color             Console.BackgroundColor = System.ConsoleColor.White;             Console.ForegroundColor = System.ConsoleColor.Black;           }          else          {             FreeConsole();          }       }        public static void Write(string output)       {          if (console_on)          {             Console.Write(output);          }       }        public static void WriteLine(string output)       {          if (console_on)          {             Console.WriteLine(output);          }       }        [DllImport('kernel32.dll')]       public static extern Boolean AllocConsole();       [DllImport('kernel32.dll')]       public static extern Boolean FreeConsole();    } }   // example calls Ext_Console.Write('console output  '); Ext_Console.WriteLine('console output'); Ext_Console.Show(true,'Title of console');   
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T18:32:12+00:00Added an answer on May 10, 2026 at 6:32 pm

    RichTextBox has an AppendText method that is fast. And it can handle large text well.
    I believe it is the best for what you need.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 80k
  • Answers 80k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer TagLib seems like a good candidate. May 11, 2026 at 4:20 pm
  • Editorial Team
    Editorial Team added an answer The following entry in your "records.css" file is causing the… May 11, 2026 at 4:20 pm
  • Editorial Team
    Editorial Team added an answer Can you try using wsdl.exe to generate the proxy class… May 11, 2026 at 4:20 pm

Related Questions

A method I work with that is called tens of thousands of times started
I have searched but cant find this question anywhere. My wife and I are
i'm trying to debug a program, that i don't have the source code for:
Given that I only have one monitor, what's the best way to debug a

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.