up vote 1 down vote favorite
share [g+] share [fb]

Every project I compile with Delphi 7, in which I do not compile with run-time packages, gives a linker error: "Too many resources". Even a blank application gives this error.

In other words: Delphi died on me.

link|improve this question
Remember: this happens even on a virgin new application! I solved it (well, in a way) by re-installing Delphi. So it had nothing to do with my projects, it was purely a Delphi problem. – Dick Boogaers Sep 21 '08 at 14:56
feedback

3 Answers

What happens when you try to build it from the command line? (i.e., \Program Files\Borland\Delphi7\Bin\dcc32.exe)

Also, have you build any custom .RES files for this project? If not, try deleting the default .RES that Delphi created for you, and let it get re-created by the project.

You can also force an update to the .RES file by changing something trivial, like the version #, saving your project, then changing it back again.

Sorry these are not answers... but hopefully we will find the issue with a little poking around.

link|improve this answer
It even happens on a new blank application! – Dick Boogaers Sep 21 '08 at 14:54
feedback

Make sure you don't duplicate the resource inclusion, like having multiple {$R *.dfm} lines in a unit or multiple {$R *.res} for the project. Could also be included anywhere in a unit like {$R MyProject.res} as well...

link|improve this answer
It even happens on a new blank application! – Dick Boogaers Sep 21 '08 at 14:57
feedback

Most likely a corrupted project.res file. Try renaming the old and see if it is successfully recreated?

link|improve this answer
It even happens on a new blank application! – Dick Boogaers Sep 21 '08 at 14:53
feedback

Your Answer

 
or
required, but never shown