vote up 0 vote down star

I have an MDIChild form that needs to show a dialog. I'm currently doing it like this from inside the mdichild form...

f.ShowDialog(Me)

Should I be using f.ShowDialog(mdiparent)?

What is the difference when setting the owner before calling showdialog()?

Thanks.

flag

2 Answers

vote up 1 vote down check

The difference is in which parent owns the dialog. If you explicitly set the parent then that window owns the dialog. If you don't set it (using the parameterless version of ShowDialog) then the current active window of your application owns the dialog. That's on MSDN, btw.

Where this is useful is in centering your dialog by setting the StartPosition property using the FormStartPosition.CenterParent enumeration.

link|flag
I guess you would have to do some trickery for the current active window to NOT be the "parent"...unless you trigger a showdialog from another forms action, which would be weird. – dotjoe Feb 11 at 21:55
vote up 2 vote down

I'm not sure if this is related, but I've had some issues with passing the owning form in ShowDialog, I usually do this:

f.Owner = Me
f.ShowDialog()
link|flag
I will see if it makes a difference. – dotjoe Jan 29 at 14:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.