Dialogs in DLL's
-
Hallo to all, is there anyone who works with Dialogs and modless windows in DLL over MFC? How can I handle the right resources? What kind of DLL is to use? If it is possible, I want to use a Win32-Project with MFC as Console-App. Is it possible? Thank you Meinhard :zzz:
-
Hallo to all, is there anyone who works with Dialogs and modless windows in DLL over MFC? How can I handle the right resources? What kind of DLL is to use? If it is possible, I want to use a Win32-Project with MFC as Console-App. Is it possible? Thank you Meinhard :zzz:
Hi What I got from your question is that you want to develop a DLL which supports Dialog box and it can be used in console and other application. If it is so then it is possible. Use class wizard (MFC AppWizard (dll) ) to create your DLL. you can create dialog bos and all you want like MFC applicatin, and also you can use this DLL in console application. Regards Anil
-
Hi What I got from your question is that you want to develop a DLL which supports Dialog box and it can be used in console and other application. If it is so then it is possible. Use class wizard (MFC AppWizard (dll) ) to create your DLL. you can create dialog bos and all you want like MFC applicatin, and also you can use this DLL in console application. Regards Anil
Hi Anil, I tried to do so, but if I want to acces it from the app like CDialogXX m_dialogXX; m_diologXX.create(ID_SOURCE, NULL); // ID_Source is a resource of the DLL // but #defined in both identical. the AFX_FindResource()-Function will abort. TRhats my problem. Thank you for helping Regards Meinhard