Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MFC Extension problem

Status
Not open for further replies.

Chinmay

Programmer
Oct 15, 2001
3
IN
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


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top