使用 visual studio 从 outlook vsto Addin 打开一个 excel 文件
open an excel file from outlook vsto Addin with visual studio
如何使用 Outlook 插件 open/work 处理 excel 文件?
我导入 outlook 命名空间:
Imports Outlook = Microsoft.Office.Interop.Outlook
但是 excel 命名空间不可访问
Imports Outlook = Microsoft.Office.Interop.excel
我只能导入Microsoft.Office.tools.excel
,但它没有提供我认为的功能...
我自己找到了答案:
您需要通过以下方式添加对 Microsoft.Office.Interop.excel 扩展的引用:
Project > Add reference > Extension > Microsoft.Office.Interop.excel
那么您可以:
Imports Excel = Microsoft.Office.Interop.Excel
Public Class ThisAddIn
Dim ExcelApp As New Excel.Application
Dim ExcelWorkbook As Excel.Workbook
end class
如何使用 Outlook 插件 open/work 处理 excel 文件?
我导入 outlook 命名空间:
Imports Outlook = Microsoft.Office.Interop.Outlook
但是 excel 命名空间不可访问
Imports Outlook = Microsoft.Office.Interop.excel
我只能导入Microsoft.Office.tools.excel
,但它没有提供我认为的功能...
我自己找到了答案:
您需要通过以下方式添加对 Microsoft.Office.Interop.excel 扩展的引用:
Project > Add reference > Extension > Microsoft.Office.Interop.excel
那么您可以:
Imports Excel = Microsoft.Office.Interop.Excel
Public Class ThisAddIn
Dim ExcelApp As New Excel.Application
Dim ExcelWorkbook As Excel.Workbook
end class