, :
- : 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; =)
source
share