Generating a modal form from a MDI child form

G

Garry

I am trying to display a simple modal form from a button on a displayed MDI
child form toolstrip.

Does anyone have some simple sample code example to send me.

Will be much appreciated.
 
B

Bryan Phillips

Does this code not work?

SomeForm frm = new SomeForm();
frm.ShowDialog(this);
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top