OutputWindow using DTE2

  • Thread starter Thread starter JPS
  • Start date Start date
J

JPS

I am having trouble with this code. It is something syntactically,
but I am not sure what.
My ends result should clear the debug window.

OutputWindow outputWin = new DTE2 dte.ToolWindows.OutputWindow;
//dte.ToolWindows.OutputWindow.ActivePane.Clear();
OutputWindowPane pane = null;
outputWin.Parent.AutoHides = false;
outputWin.Parent.Activate();
pane.Activate();
pane.Clear();
 

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

Back
Top