Microsoft.Office.Interop.Excel.ApplicationClass excel = new Microsoft.Office.Interop.Excel.ApplicationClass();
我收到错误
‘Microsoft.Office.Interop.outlook.applicationClass’无法嵌入.改用适用的界面.
和
类型“Microsoft.Office.Interop.outlook.applicationClass”没有定义构造函数
解决办法是什么?
解决方法 使用界面:Microsoft.Office.Interop.outlook.application outlook = new Microsoft.Office.Interop.outlook.application()
或禁用此程序集的Interop类型的嵌入(参考 – > Microsoft.Office.Interop.Outlook(右键单击) – >属性 – >将“嵌入互 *** 作类型”设置为False)
更多信息为什么可以在这里找到:http://blogs.msdn.com/b/mshneer/archive/2009/12/07/interop-type-xxx-cannot-be-embedded-use-the-applicable-interface-instead.aspx.
总结以上是内存溢出为你收集整理的c# – Outlook互 *** 作性全部内容,希望文章能够帮你解决c# – Outlook互 *** 作性所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)