I have a Modal dialog, Parent, and a button it that'll call a modeless dialog Child. I want to be able to have the Child dialog in the background and bring the Parent into the foreground with, say a Left mouseclick. I figured that since the Child dialog is modeless it can go behind the Parent no problem... but I cannot get it to work. I've tried this in the Parent OnLeftMouseClick...
b/c after reading the MSDN pages I thought this should work... how do I accomplish this? Thanks...:)Code:this->SetWindowPos(&wndTopMost,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE|SWP_SHOWWINDOW );
