nu2vcpp

Please tell me how to create a dll with dialogs using VC++ 6.0




Re: Visual C++ General Is it possible to have dialogs in a DLL created using VC++ 6.0

Marius Bancila

I suggest starting with this article.




Re: Visual C++ General Is it possible to have dialogs in a DLL created using VC++ 6.0

nu2vcpp

Thank you. But is it not possibale using a regular dll using MFC shared library. Please tell me how to export dialog class or object of a regular dll and use it in VC++ application.




Re: Visual C++ General Is it possible to have dialogs in a DLL created using VC++ 6.0

Marius Bancila

What's wrong with an MFC extension DLL




Re: Visual C++ General Is it possible to have dialogs in a DLL created using VC++ 6.0

nu2vcpp

I tried to create a new class for a dialog box. Even I deleted CModeless.cpp and CModeless.h from worksapace and containing folder, I am recieving

---------------------------
Microsoft Visual C++
---------------------------
Unable to open the files (D:\MyFolder\example\Dlg\Modeless.h, D:\MyFolder\example\Dlg\Modeless.cpp) for class "CModeless".
---------------------------
OK
---------------------------
"---------------------------
Microsoft Visual C++
---------------------------
The files (Modeless.h, Modeless.cpp) for the new class "CModeless" contain remnants of that class.
---------------------------
OK
---------------------------

Errors. And when I compile and build, it is not recognising CModeless class. Please help me to rectify this. I need to export this Modelless dialog.

Thank you