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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Modal childMDIWindows

Status
Not open for further replies.

chispavip

IS-IT--Management
Dec 20, 2006
10
MX
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
Code:
using (FormMyModalWin formMyModalWin = new FormMyModalWin())
{
    formMyModalWin.ShowDialog(this);
}

//"this" is my MDIchild window
Any ideas??
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top