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.