Discussion:
To many resources to handle
(too old to reply)
Felipe
2008-07-28 13:02:01 UTC
Permalink
Hi

I'm using C++ Builder 6.
I put some .PNG images into the myproject.res file, using an external
resource editor ("XN Resource Editor"),
to use as elements of the GUI.

Well, before add a new resource using the editor and back to C++
Builder to build project,
I got the message :

"RLINK32: Too many resources to handle"

I can't delete the .res file and take BCB re-generate it, becose my
res file contain important data.

When I delete some PNG of the resource file, compiles perfectly. But I
really need to put some imagens into the res file.

Somebody can help me?

thanks!

Felipe
Felipe
2008-07-29 17:16:28 UTC
Permalink
I did it, with another approach.
I create another .res file using the Resource Editor, and put my .png
files (as RC Data) there.

And then I link that .res file with my class:

#pragma resource "images.res"

Works perfectly.

Maybe the main .res file "MyProject.res" has a limit of resources.. or
limit in kbytes.. I don't know..

cheers
Felipe

Loading...