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

MFC is failing to launch my dialog boxes, it seems, because it can't find the resource identifiers. The dialog boxes are in a separate .lib file (so it has a separate .rc file, which, I'm assuming, somehow conflicts with the one in my .exe file). How should I be handling this situation?

link|improve this question

79% accept rate
Can you give more details about how it is "failing to launch"? What are the specific symptoms? – Pavel Minaev Oct 29 '09 at 7:23
I would call DoModal, and nothing would happen. Stepping in to the DoModal function revealed that the resource wasn't able to be loaded. – Smashery Oct 29 '09 at 7:40
feedback

3 Answers

up vote 3 down vote accepted

In the .rc file for the .exe file, add a line like this:

#include "YourLibResourceFile.rc"

Then, in the .exe's project settings, add an additional include directory to where YourLibResourceFile.rc is, in Resources/Additional Include Directories.

link|improve this answer
feedback

You can't store resources (.rc files contents) in a static library. And since you can have only one "main" .rc file, all other .rc files mst be included in that one using an #include statement, such as explained by Smashery (Edit: Oh! Smashery, you are the OP!).

link|improve this answer
Yeah, I discovered this accidentally by myself =P Thanks for your answer! +1 – Smashery Nov 5 '09 at 1:01
feedback

Make sure all your resource IDs are unique.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.