How to bring on top a popup dialog while its parent window is hidding?
I want to bring on top a browse item dialog box when login to my app is successful while my main frame window is hide but I can't.
Thanks for your assistance.
Do Quyet Tien
Have you tried a non-modal dialog?
I got to do a similar thing to what you are trying, but the dialog I opened while a main window was hidden ( ShowWindow(SW_HIDE) ) was non-modal ( instead of calling CDialog::DoModal() you call the CDialog::Create function, and then you call ShowWindow(SW_SHOWNORMAL) ), and it worked to me!
Good luck!