本文介绍了代码完成不能在德尔福2009工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在从Delphi 7升级到Delphi 2009。
I am upgrading from Delphi 7 to Delphi 2009.
在现有的应用程序中,代码完成什么都不做。如果我开始一个新的项目,它的工作正常。
In an existing app, the code completion does nothing at all. If I start a new project, it works fine.
任何想法发生了什么?
推荐答案
最后找到解决方案,花了一段时间。
Finally found the solution to this one, took awhile.
添加了WinTypes = Windows; WinProcs = Windows; DbiTypes = BDE; DbiProcs = BDE; DbiErrs = BDEto:
Added "WinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE" to:
项目选项 - > Delphi编译器 - >单元别名
Project Options -> Delphi Compiler -> Unit aliases
一个很大的原因为什么,但是厌倦了解释它。
There is a whole big reason why, but to tired to explain it.
这篇关于代码完成不能在德尔福2009工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!