Hi,
Let me explain my project. I had one project which had client GUI and
CORE and some my GUI (like about screen) part. Now, I wanted to
separate the client GUI from my coding so that I can deliver client a
compiling application.
Now, I created MFC Extended DLL. Which had only VERSION in resource
tab. I have some dialog which I need to put in DLL. I have moved all
the classes from my previous workspace to DLL (code is moved to DLL).
But If I move dialog template to DLL, it is not workign properly. It
does not show any dialog. even I moved IDD_MYDIALOG define from exe's
resource.h to DLL's resource.h file. I debugged the code. It creates
dialog class's object but dont go into OnInitDialog function. So,
currently my dialog template is there in my application project. Class
for that dialog is there in my DLL project and it is working properly.
But I want to move dialog template too in my DLL project.
So, is it so that I need to have some special settings for DLL having
resources ? Why would my resources not getting embedded in my DLL ?