I have multiple dialog applications. One dialog opens the another dialog. I am opening a Dialog say Dialog 2 from Dialog1 by calling DoModal() method. I am opening an another dialog say Dialog3 from Dialog2 using the same method DoModal(). Even after opening Dialog3 i can access Dialog2 just like Dialog3 is a modeless dialog. But i want Dialog3 to be Modal so that as long as Dialog3 is open user can't access dialog2.

Please HELP

ABM