Emily Adler
Emily Adler

Reputation: 73

Delphi 7 throws an error: RLINK32 Too many resources to handle

Delphi 7 has decided that it no longer want to cooperate. I was working on a relatively small project and was all but finished, but as I chose an icon for the exe-file the program threw this error: RLINK32 Too many resources to handle.

Now it throws that error even on a completely empty form whenever I try to compile it.

Upvotes: 0

Views: 9721

Answers (1)

Just for the record: Today I ran into this error (also using Delphi 7). I was editing the DFM directly/manually (for my project is a pure WinApi application). I got the error when assigning an empty string to a property (inside the DFM file).

Caption = ''

Obviously, the RLINK32 error was gone as soon as I removed the infamous empty string (which the compiler doesn't like), or after changing the value to a non-empty string.

Upvotes: 1

Related Questions