Console::WriteLine()

  • Thread starter Thread starter bill
  • Start date Start date
B

bill

Is there a way to see the results of Console::WriteLine() in a .NET
WindowsForms application?

TIA

Bill
 
You could set Console.SetOut() to a TextWriter of your making (on which will
write to a TextBox, for example).
Or you could use Trace.WriteLine() and use trace listener
Or you could look at the Output windows if debugging with VS2005 (Console
window if debugging with VS2003)

--
Regards,
Lloyd Dupont

NovaMind development team
NovaMind Software
Mind Mapping Software
<www.nova-mind.com>
 
Lloyd,

Thanks. But I do not see a "Console window" as one of the choices in the
debug window list in the VS 2003 IDE. There are autos, locals,
immediate, call stack, registers, etc., but no "console".

Bill
 
I don't have VS2003 on my system anymore, so it's hard to tell...
anyway look in:
View
View=>Other Window
Debug
Debug=>Windows
 
Back
Top