Can I export a list of errors from Visual Studio 2008?

I would like to know if it is possible to export the Visual Studio 2008 error list, preferably in Excel format.

Thank.

+3
source share
4 answers
  • In the error window Ctrl+A,Ctrl+C
  • Paste in Excel
+13
source

This is very ... interesting to say the least.

You can click Ctrl+ Ain the Error List window to select all the items, then Ctrl+ Cto copy them to the clipboard and then paste them into Excel.

+3
source

- Visual Studio

Visual Studios, Export, Email, Print.

http://shemeerns.com/error-list-manager-plugin/

+2

, :

  • : CTRL-A, CTRL-C
  • Excel
  • : CTRL-V

You could easily automate this quite easily with a Visual Studio macro, which can be as simple as this:

DTE.Windows.Item(EnvDTE80.WindowKinds.vsWindowKindErrorList).Activate
DTE.ExecuteCommand ("Edit.SelectAll")
DTE.ExecuteCommand ("Edit.Copy")

This was created by recording a macro (Tools> Macros> Record). Controlling the transfer from the clipboard and a copy of Excel is the one that I will leave for you, because I used to use Excel automation and never want to again; =)

+1
source

Source: https://habr.com/ru/post/1793020/


All Articles