B
Bob
Does anyone know how to clear the window so it's easier to see the
stuff you have listed with Debug.Write(xyz)?
Bob Sweeney
stuff you have listed with Debug.Write(xyz)?
Bob Sweeney
Try right-clicking inside the Output window and look at the context menu
options.
Peter
--
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short urls & more: http://ittyurl.net
- Show quoted text -
stuff you have listed with Debug.Write(xyz)?
to all of the IDE, its windows, and their contents:
http://msdn2.microsoft.com/en-us/li...icrosoft.com/en-us/library/envdte(VS.80).aspx
private void ClearOutput()
{
EnvDTE80.DTE2 ide =
(EnvDTE80.DTE2)System.Runtime.InteropServices.Marshal.GetActiveObject("VisualStudio.DTE.8.0");
ide.ExecuteCommand("Edit.ClearOutputWindow","");
System.Runtime.InteropServices.Marshal.ReleaseComObject(ide);
}
the current run is shown in the window.
Does anyone know how to clear the window so it is easier to see the
stuff you have listed with Debug.Write(xyz)?
Bob Sweeney
On Thursday, March 22, 2007 6:21 AM pbromber wrote:
Try right-clicking inside the Output window and look at the context menu
options.
Peter
--
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short urls & more: http://ittyurl.net
"Bob" wrote:On Friday, March 23, 2007 9:32 AM Laura T. wrote:
Yup. This works. But is it worth of it?
private void ClearOutput()
{
EnvDTE80.DTE2 ide =
(EnvDTE80.DTE2)System.Runtime.InteropServices.Marshal.GetActiveObject("VisualStudio.DTE.8.0");
ide.ExecuteCommand("Edit.ClearOutputWindow","");
System.Runtime.InteropServices.Marshal.ReleaseComObject(ide);
}
"Peter Bromberg [C# MVP]" <[email protected]> ha scritto nel
messaggio news:[email protected]...