Wired Message Routing Problem
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
I've the following situation: MFC Dialog based Application \_CMainDlg \_CMainDlg So the CMainDlg opens another dialog of the same type: m_DoubleCalc = new CMainDlg (NULL, IDD_CALC_DIALOG_MINI); m_DoubleCalc->Create(IDD_CALC_DIALOG_MINI, this); The 2 Dialogs are running at the same time, the problem is that it seems like that the previous CMainDlg eats messages from the other CMainDlg it has created. The wired thing is some messages seem to work while other dont. I'am searching now for hours, but I still have no clue. Thank you Mario