I have created one MFC extension DLL, in which one modeless dialog box
is defined. I want to create the dialog from another application by
the following lines:
BDialog *b_pobjDlg;
TheApp.b_pobjDlg = new BDialog(this);
TheApp.b_pobjDlg->Create();
So, in my application two resource files are used. One in .dll application
another in .exe application. It should be mentioned here that dll application
is compiled by _Unicode option, but exe application is compiled by without
_Unicode option.
My problem is, when I run the application and control goes to dll portion
the control can't find out the resource handler for dialog.
Please help me immediately.
Chinmay
is defined. I want to create the dialog from another application by
the following lines:
BDialog *b_pobjDlg;
TheApp.b_pobjDlg = new BDialog(this);
TheApp.b_pobjDlg->Create();
So, in my application two resource files are used. One in .dll application
another in .exe application. It should be mentioned here that dll application
is compiled by _Unicode option, but exe application is compiled by without
_Unicode option.
My problem is, when I run the application and control goes to dll portion
the control can't find out the resource handler for dialog.
Please help me immediately.
Chinmay