本文介绍了如何确定发生错误的对象的确切位置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在逐步调试一个Access应用程序从autoexec宏执行的流程,我得到一个错误缺少项目或库引用(我不知道这是否是正确的翻译,消息西班牙语No se puede encontrar el proyecto o la biblioteca);我非常清楚我在应用程序中有一个缺少的引用,但是哪一个?。

我的意思是,调试在要执行的函数的开始时停止,因此很难我知道错误中的哪个对象正在引用。



函数是一个字符串类型一个,一个参数作为字符串,第二个作为布尔值。即使第一个参数告诉我,如果我试图在中间视图中看到它的内容,那么库也会丢失。



我怎么知道什么是缺少的库或库?



我的尝试:



我正在寻找同时,项目中所有缺失的参考文献。



不幸的是我找不到的东西很少。我让系统人员给我这些文件。



其中一个是.tlb文件?这些是什么类型的?

I´m debugging an Access application following step by step the flow of execution from the autoexec macro, and I get an error "Missing project or library reference" (I don´t know if this is the correct translation, the message is in spanish "No se puede encontrar el proyecto o la biblioteca"); I´m very aware I got a missing reference in the app, but which one ?.
I mean, the debug stops at the beggining of the function to be executed, so it´s very difficult to me to know which object inside the error is refering to.

The function is a string type one with one parameter as string and a second one as boolean. Even the first parameter tells me the library is missing if I try to see its content in the inmediate view.

How can I know what is precisely the missing library or libraries ?

What I have tried:

I'm looking for all the missing references in the project in the meantime.

Unfortunately there are few I can´t find. I asked the systems personnel to get me those files.

One of them is a .tlb file ?. What kind are those ?

推荐答案


这篇关于如何确定发生错误的对象的确切位置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 10:15