Behind the manue strip i put this code form opeing a Form
private void searchByWordToolStripMenuItem1_Click(object sender, EventArgs e)
{
Form2_Search_Word SearchWord = new Form2_Search_Word();
SearchWord.Show();
SearchWord.MdiParent = this;
}
But the problem is is when i click the menu strip is display a form as i click it again it shows another, another another. I want to restrict it if it already open and want to focus it. pleaes guide me i am the beginner