本文介绍了UCase在VBE中没有得到认可,需要什么参考?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在通过一些vba代码,并在UCase()上得到一个编译错误。它说编译错误:找不到项目或库。我从来没有遇到过,需要通过引用添加哪些库来识别这个?
I am going through some vba code and I get a compile error on UCase(). It says compile error: can't find project or library. I have never encountered this before, what library do I need to add through references to recognise this?
推荐答案
检查引用对话框您应该找到至少一个标记为MISSING:的引用,删除该缺失的引用,并且所有引用都应该很好。
Check the References dialog and you should find at least one reference marked "MISSING:" Remove that missing reference and all should be well.
缺少引用可能导致VBA奇怪的行为,在关键字
Missing references can cause VBA to act strangely including not recognising built-in keywords
这篇关于UCase在VBE中没有得到认可,需要什么参考?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!