views:

99

answers:

3

I have a lot of errors in structure panel. The application compiles and run fine with Delphi 2007. But the code have much code that have red underlines. If I press Ctrl + leftclick on it it finds the original declaration. But it is still annoying to have all those errors.

+2  A: 

These are well-known IDE bugs. Have you tried the IDE Fix Pack?

ulrichb
+1  A: 

I am assuming you just want all the red underlines to go away:

Tools | Options | Editor Options | Code Insight

Then uncheck Error insight

That is for Delphi 2010, but I think it is very similar in Delphi 2007, but I don't currently have it installed.

Jim McKeeth
No I want them as it informs about errors in the code. Bit a shame it don't always work.
Roland Bengtsson
Unfortunately with D2009 nothing else helped me. So no underlines are better than 50% of the code marked red.
Heinrich Ulbricht
+1  A: 

I have IDE Fix Pack installed, and still get incorrect error insight red lines regularly.

Some things which help (temporarily)

  • Close the project and delete *.local and *.identcache, then re-open the project.

  • When Loading a project, wait for the code-folding lines in the gutter to appear (before Delphi 2009, this indicates that the background compiler is finished)

jasonpenny
Thanks, remove those files seems to reduce the glutter a lot.
Roland Bengtsson