up vote 3 down vote favorite
1
share [g+] share [fb]

I have an MDI application (written in .NET 2.0) which lets users open multiple child forms. The child forms are always maximized inside the MDI parent. When the MDI parent is maximized and I attempt to do a MessageBox.Show, the MessageBox doesn't show. If I do an alt-tab (or even just press alt) the MessageBox pops to the front.

Any ideas how to make that sucker show up to begin with?

This is only a problem when the MDI parent is maximized...

link|improve this question
Tad! Friendfeed! Wish I had something intelligent to say on MDI question. – micahwittman Sep 18 '08 at 21:56
I have the exact same problem. Did you ever discover a solution to this problem? Does anyone have any ideas how to get around this? – David Božjak Mar 30 '10 at 8:31
feedback

1 Answer

Try using MessageBox.Show(Window owner, string message, string caption) Setting the MDI application as owner so the MB is shown in the front

Ah, you should also add some tags to your post.

link|improve this answer
Already tried that one, but thanks Ricky. :) – Tad Sep 19 '08 at 18:08
feedback

Your Answer

 
or
required, but never shown