I have a MDI App, with some child forms.
This chil forms shows some modal windows, but I want the shown window be modal just to the ChildMDIwindow (the caller) and not all the APP.
I tried this, but it doesn't work
Any ideas??
This chil forms shows some modal windows, but I want the shown window be modal just to the ChildMDIwindow (the caller) and not all the APP.
I tried this, but it doesn't work
Code:
using (FormMyModalWin formMyModalWin = new FormMyModalWin())
{
formMyModalWin.ShowDialog(this);
}
//"this" is my MDIchild window