使用 Interop.MODI 抛出 0x80040154 异常
我目前正在尝试实现 Interop.MODI.dll (来自 Microsoft Office)以使用图像 ->它应该提供的文本功能。 但是当我这样做时,
var modi = new MODI.DocumentClass();
我得到:
“COMException 80040154,CLSID {40942A6C-1520-4132-BDF8-BDC1F71F547B}”。
我尝试了什么来解决该问题?
我使用 regasm 工具注册了 DLL: -问题仍然存在
我尝试将 BuildPlatform 设置为 x86: -问题仍然存在
我使用 Visual Studio 2010 Ultimate 和 Windows 7 Professional 64Bit &安装了 Microsoft Office 2007
编辑:我找到了解决方案:
我需要将“MS-Office-Document-Imaging”功能安装到 MS 办公室让它发挥作用。 (软件 -> MS Office(右键 -> 编辑) ->添加功能-> Microsoft Office 文档成像)
I am currently trying to implement the Interop.MODI.dll (From Microsoft Office) to use the Image -> Text features it should Provide.
But when doing
var modi = new MODI.DocumentClass();
I get:
"COMException 80040154 with CLSID {40942A6C-1520-4132-BDF8-BDC1F71F547B}".
What have I tried to solve that problem?
I registered the DLL using the regasm tool:
-Problem still exists
I tried setting the BuildPlatform to x86:
-Problem still exists
I use the Visual Studio 2010 Ultimate with Windows 7 Professional 64Bit & Have Microsoft Office 2007 installed
EDIT: I found the Solution:
I needed to install the "MS-Office-Document-Imaging" feature to MS
Office to get it working. (Software -> MS Office (rightclick -> edit)
-> Add Features -> Microsoft Office Document Imaging)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试检查
Microsoft Office Document Imaging Components
是否安装正确。您可以通过修改 Microsoft Office 安装
软件 > 来做到这一点。编辑 Microsoft Office 安装 >添加/删除组件
。请确保,
Office-Tools > Microsoft Office Document Imaging
已完全安装!此外,如果您在 64 位计算机上进行开发,请将项目输出从
any CPU
更改为x86
Try to check if
Microsoft Office Document Imaging Components
are installed correctly.You can do that by modifying your Microsoft Office Installation
Software > Edit Microsoft Office Installation > Add/Remove Components
.Be sure, that
Office-Tools > Microsoft office Document Imaging
is installed completely!Furthermore, if you are developing on a 64-bit machine, change your project output from
any CPU
tox86
将 IIS(Internet 信息服务器)应用程序池 + 属性 + 高级配置启用 32 位应用程序的选项配置为TRUE。
Configure the IIS (Internet Information Server) Application Pool + properties + advanced configuration option to enable 32-bit applications to TRUE.