开发者

Is it possible to export the error list from Visual Studio 2008?

I would like to know if it is somehow possible to export the Visual Studio 2008 error开发者_如何学Go list, preferably in Excel format.

Thanks.


  1. In errors window Ctrl+A, Ctrl+C
  2. Paste in Excel


That's very... interesting, to say the least.

You can press Ctrl+A in "Error List" window to select all items, then Ctrl+C to copy them to the Clipboard and then paste in Excel.


Not automated, but:

  1. Click anywhere in the error list
  2. Type: CTRL-A, CTRL-C
  3. Open Excel
  4. Type: CTRL-V

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

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

That's been generated by recording a macro (Tools > Macros > Record). The exercise of moving it out of the clipboard and into a copy of Excel is one that I'll leave for you, as I've used Excel automation before and never want to again ;=)


Error List Manager – Visual Studio Plugin

Error List Manager extension lets you perform extra actions on Visual Studio’s Error List Window like Export, Email, Print.

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

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜