本文介绍了错误C1084:无法读取类型库文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个Windows应用程序,其中包括一些控制台和c ++项目.在构建应用程序时,我遇到以下提到的错误:-

I have a windows application including some console and c++ projects.While building application i am getting below mentioned error:-

错误C1084:无法读取类型库文件... Biodentify.Gina.Services.tlb: 加载类型库/DLL时出错

error C1084: Cannot read type library file... Biodentify.Gina.Services.tlb: Error loading type library/dll

有人知道如何解决吗?

Does anyone know how to solve it?

推荐答案

  • 类型库在正确的位置吗?
  • 您的应用程序和类型库是32位还是64位?
  • 类型库中是否包含任何内容?
  • 如果您的类型库包含另一个类型库,请记住搜索路径是应用程序的搜索路径.

    If your type library includes another type library, keep in mind that the search pathis the app search path.

    另一件棘手的事情:如果类型库具有包含,并且已注册了该包含的类型库,则将首先找到它.

    One more tricky thing: If a type library has an include, and this included type library is registered, it will be found first.

    这篇关于错误C1084:无法读取类型库文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-10 02:59