Showing MDIChild modally?
-
No. MDI Child forms are not meant for this purpose. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
-
No. MDI Child forms are not meant for this purpose. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
-
So if my MDIChild window open, how can I make shure they don't click on the menu, etc.. without disabling it. So to make it the same way as when you trying to click away in the modal form and it makes this "Ding" sound? Thank you
zaboboa wrote: how can I make shure they don't click on the menu, etc.. without disabling it. "menu, etc, ..." of what? Your explanation isn't very clear at all. An MDI Child window is a Multiple DOCUMENT Interface window. It's meant to edit documents, like having multiple editing windows open in Word, each editing a different document. It's not meant to be a modal window for anything. I don't get why your MDI Child window has to be modal. I can't think of a single reason why you would want to do this. What are you trying to do with this? RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
-
you can't make it a modal but you can play a trick like I did. Do not make it a MdiChild. Set its ShowInTaskBar to false.. open it modally.. (ShowDialog) that will do exactly what you want.. Regards