Microsoft.Office.Core.MsoTriState引用问题

c#工程中添加了Microsoft.Office.Core引用之后,在程序中用到了Microsoft.Office.Core.MsoTriState,仍然出错:

错误 1 类型Microsoft.Office.Core.MsoTriState
在未被引用的程序集中定义。必须添加对程序集“office, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c”的引用。 C:/Documents and 

错误 2 “Microsoft.Office.Interop.PowerPoint.Presentations.Open(string, Microsoft.Office.Core.MsoTriState, Microsoft.Office.Core.MsoTriState, Microsoft.Office.Core.MsoTriState)”最匹配的重载方法具有一些无效参数


错误 3 参数“2”: 无法从Microsoft.Office.Core.MsoTriState [c:/Documents and Settings/Administrator/我的文档/Visual Studio 2008/Projects/PPTPaser/ClassLibrary1/obj/Debug/Interop.Microsoft.Office.Core.dll]”转换为
Microsoft.Office.Core.MsoTriState []”

纠结了几个钟头,仍然不能解决,望各位大侠指点,感激不尽,会多给分的!

第一次在csdn上写文章.

因为要做一个提取ppt文字的工程,第一次接触Office开发.

以下是源码:

view plaincopy to clipboardprint?
·········10········20········30········40········50········60········70········80········90········100·······110·······120·······130·······140·······150
using System;  
using System.Collections.Generic;  
using System.Linq;  
using System.Text;  
using PowerPoint = Microsoft.Office.Interop.PowerPoint;  
using Microsoft.Office.Core;  
using System.Runtime.InteropServices;  
namespace ConsoleApplication1  
{  
    public class Program  
    {  
        public static void Main(string[] args)  
        {  
            String fileName = "F://test.ppt";  
            Program.Parse(fileName);  
        }  
        public static void Parse(String fileName)  
        {  
            try 
            {  
                PowerPoint.Application pa = new PowerPoint.ApplicationClass();  
                  
                PowerPoint.Presentation pp = pa.Presentations.Open(fileName,  
                                                                                                      Microsoft.Office.Core.MsoTriState.msoTrue,  
                                                                                                      Microsoft.Office.Core.MsoTriState.msoFalse,  
                                                                                                      Microsoft.Office.Core.MsoTriState.msoFalse);  
                Console.WriteLine("Open Success");  
                PowerPoint.TextFrame frame;  
                String text;  
                foreach (PowerPoint.Slide slide in pp.Slides)  
                {                      
                    foreach (PowerPoint.Shape shape in slide.Shapes)  
                    {  
                          
                        if (shape.HasTextFrame == Microsoft.Office.Core.MsoTriState.msoTrue)  
                        {  
                            frame = shape.TextFrame;  
                            if (frame.HasText == Microsoft.Office.Core.MsoTriState.msoTrue)  
                            {  
                                  
                                text = frame.TextRange.Text;  
                                Console.WriteLine(text);  
                            }  
                        }  
                    }  
                }  
            }  
            catch (Exception e)  
            {                  
                Console.WriteLine(e.Message);  
            }  
        }  
    }  

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using PowerPoint = Microsoft.Office.Interop.PowerPoint;
using Microsoft.Office.Core;
using System.Runtime.InteropServices;
namespace ConsoleApplication1
{
    public class Program
    {
        public static void Main(string[] args)
        {
            String fileName = "F://test.ppt";
            Program.Parse(fileName);
        }
        public static void Parse(String fileName)
        {
            try
            {
                PowerPoint.Application pa = new PowerPoint.ApplicationClass();
               
                PowerPoint.Presentation pp = pa.Presentations.Open(fileName,
                                                                                                      Microsoft.Office.Core.MsoTriState.msoTrue,
                                                                                                      Microsoft.Office.Core.MsoTriState.msoFalse,
                                                                                                      Microsoft.Office.Core.MsoTriState.msoFalse);
                Console.WriteLine("Open Success");
                PowerPoint.TextFrame frame;
                String text;
                foreach (PowerPoint.Slide slide in pp.Slides)
                {                   
                    foreach (PowerPoint.Shape shape in slide.Shapes)
                    {
                       
                        if (shape.HasTextFrame == Microsoft.Office.Core.MsoTriState.msoTrue)
                        {
                            frame = shape.TextFrame;
                            if (frame.HasText == Microsoft.Office.Core.MsoTriState.msoTrue)
                            {
                               
                                text = frame.TextRange.Text;
                                Console.WriteLine(text);
                            }
                        }
                    }
                }
            }
            catch (Exception e)
            {               
                Console.WriteLine(e.Message);
            }
        }
    }
}
 

代码倒挺简单,但是添加引用废了我半天的力气.

首先是更改office2003的安装,参见msdn

http://msdn.microsoft.com/zh-cn/library/aa159923(office.11).aspx#EHAA

这样,你的引用中就会出现以下内容(当然有可能以前就有了,不用更改office2003的安装)

(1).net中有Microsoft.Office.Interop.PowerPoint, Office

(2)com中有Microsoft.Office 11.0(12.0) Object library

Microsoft.Office.Interop.PowerPoint肯定是要添加的.

OfficeMicrosoft.Office 11.0(12.0) Object library添加谁?

只添加Office足以!

实践证明,

(1)如果只添加Microsoft.Office 11.0(12.0) Object library,会出现下面的错误:

错误 1 类型Microsoft.Office.Core.MsoTriState在未被引用的程序集中定义。必须添加对程序集“office, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c”的引用

(2)如果OfficeMicrosoft.Office 11.0(12.0) Object library都添加,就会出现下面的错误:


错误 1 类型Microsoft.Office.Core.MsoTriState同时存在于“E:/Program Files/Microsoft Visual Studio 9.0/Visual Studio Tools for Office/PIA/Office12/Office.dll”“C:/Documents and Settings/Administrator/我的文档/Visual Studio 2008/Projects/PPTPaser/ConsoleApplication1/obj/Debug/Interop.Microsoft.Office.Core.dll”

原因是MsoTriState在两个dll中都出现了.

正确做法:只添加Office引用即可

这个问题耗了我很多时间解决,因此特地写此文,希望遇到相同问题的程序员能尽快解决之.

关于com组件的和.net组件的添加还不是很清楚,希望大牛们指教.

 

  • 6
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 17
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 17
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值