redoctober
Programmer
Hi there,
I've got a ?
I've got a single document application and in there i'm creating two modeless dialog boxes from two differnt classes. They get created and work fine with exception of one feature. If i create 1st dialog then 2nd
m_Dlg->Create(IDD_DIALOG1);
m_DlgT->Create(IDD_DIALOG2);
and then make both of them visible
m_Dlg->ShowWindow(SW_SHOW);
m_DlgT->ShowWindow(SW_SHOW);
i can't bring dialog 1 on top of dialog 2. On the task bar i get only 1 tab for both dialog boxes. It looks as if they were concidered one whole entity by windows. Is there any way around it? I would really appreciate any help.
Thanks.
I've got a ?
I've got a single document application and in there i'm creating two modeless dialog boxes from two differnt classes. They get created and work fine with exception of one feature. If i create 1st dialog then 2nd
m_Dlg->Create(IDD_DIALOG1);
m_DlgT->Create(IDD_DIALOG2);
and then make both of them visible
m_Dlg->ShowWindow(SW_SHOW);
m_DlgT->ShowWindow(SW_SHOW);
i can't bring dialog 1 on top of dialog 2. On the task bar i get only 1 tab for both dialog boxes. It looks as if they were concidered one whole entity by windows. Is there any way around it? I would really appreciate any help.
Thanks.