debug\output style window inside a winform application.

  • Thread starter Thread starter Ollie Riches
  • Start date Start date
O

Ollie Riches

Does anyone know a way to create a winform window that has similiar
functionality to the 'Output' window in VS .Net - i.e. that basically acts
like a console window but is proper MDI child of the main winform
application and does not look like a DOS window :). I have tried using an
RTF but that was not particularly great when a lot of information is
displayed quickly.

I don't want to know how to show a console window using the
AllocConsole\FreeConsole win 32 api's.

Cheers

Ollie Riches
 
Ollie Riches said:
Does anyone know a way to create a winform window that has similiar
functionality to the 'Output' window in VS .Net - i.e. that basically acts
like a console window but is proper MDI child of the main winform
application and does not look like a DOS window :). I have tried using an
RTF but that was not particularly great when a lot of information is
displayed quickly.

ConsoleControl
<URL:http://www.palmbytes.de/content/dotnet/console.htm>

Unfortunately this control is licensed with GPL.
 
Back
Top