private void regionsToolStripMenuItem_Click(object sender, EventArgs e) { //TODO: Open a form as a dialogue box for viewing Region information fmViewRegions frm = new fmViewRegions(); frm.ShowDialog(); //Execution of this method will PAUSE here until the dialogue box (fmViewRegions) // is closed, resume after the dialogue box is closed }