Code Block
private void button1_Click(object sender, EventArgs e)
this.MdiParent as MDIMain).menuStrip1.Enabled = true;
this.Close();
Hi, ganeshkuppuswamy,
Based on my understanding, you want to enable the MenuStrip in the MdiParent form when closing your Child Form, don't you?
It is possible with a public MenuStrip.
First, please change the modifier of your MenuStrip to public through Properties window.
Then, you can use the following codes to enable it in your Child Form.
Code Block
private void button1_Click(object sender, EventArgs e)
this.MdiParent as MDIMain).menuStrip1.Enabled = true;
this.Close();
HI friend
Thank you for your great help. This code is the one which I expected.