How to open one form when click on menu strip in MDI form using C#
Please help me .....How to open one form at a time when click on menu strip in MDI for using C#
Regards,
Ajit More
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Datta KharadPosted Dec 21, 2013, 5:02 AM
private void mnuABC_Click(object sender, EventArgs e)
{
frmForm1 oFrm = new frmForm1();
oFrm.StartPosition = FormStartPosition.CenterScreen;
oFrm.ShowDialog(this);
oFrm.Dispose();
oFrm = null;
}
Sanjay KumarPosted Dec 21, 2013, 4:36 AM
http://www.c-sharpcorner.com/UploadFile/mma1979/how-to-access-mdiparent-controls-from-child-forms/
http://www.c-sharpcorner.com/UploadFile/manish1231/creating-an-mdi-child-form-in-C-Sharp/
http://www.c-sharpcorner.com/UploadFile/84c85b/building-mdi-winforms-application-using-C-Sharp/