Delphi XE 2 code completion does not work with .pas files from Delphi 7

I just can't use code completion in Delphi XE 2 when I open or even copy pascal code from Delphi 7. Does anyone know how to fix it?

+3
source share
2 answers

So, the solution to your problem is to install the IDE fix pack.

http://andy.jgknet.de/blog/ide-tools/ide-fix-pack-2009-10/

0
source

If you do not want to delete your .dproj and lose your settings, you can first check that the following line "DCC_UnitAlias" is missing:

<PropertyGroup Condition="'$(Base)'!=''">
    <DCC_DependencyCheckOutputName>aida.exe</DCC_DependencyCheckOutputName>
    <DCC_UnitAlias>WinTypes=Windows;WinProcs=Windows;$(DCC_UnitAlias)</DCC_UnitAlias>
</PropertyGroup>

If you do not see it, backup dproj and just add the missing line to the desired location ( <PropertyGroup Condition="'$(Base)'!=''">)

0
source

All Articles