Output Debug Window

  • Thread starter Adrian Constantinescu
  • Start date
A

Adrian Constantinescu

Hi,

When a project VB.Net start, the output window if filled with this
kind on informations:
'TextBox.exe': Loaded
'c:\windows\assembly\gac\system.windows.forms\1.0.3300.0__b77a5c561934e089\system.windows.forms.dll',
No symbols loaded.
'TextBox.exe': Loaded
'c:\windows\assembly\gac\system\1.0.3300.0__b77a5c561934e089\system.dll',
No symbols loaded.

The problem I have is that I would like to use this form to
"Debug.WriteLine" for some variables, but the fact that the window is
allready filled with unnecesary information (for me...) makes this a
bit dificult. Is it possible to block somehow the informations that
the compiler puts in the output debug window ?

Adi
 
C

Chris Dunaway

"Debug.WriteLine" for some variables, but the fact that the window is

The output window scrolls so you won't lose any information. Also, you can
right click on it and select Clear All from the menu to clear the output
window.

If that is not good enough, look at the TraceListener class in the help.
That may help you as well.

--
Chris

dunawayc[AT]sbcglobal_lunchmeat_[DOT]net

To send me an E-mail, remove the "[", "]", underscores ,lunchmeat, and
replace certain words in my E-Mail address.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top