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!

TWO DIALOGS AT ONCE

Status
Not open for further replies.

redoctober

Programmer
Oct 25, 2000
37
CA
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.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top