예제 #1
0
 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
 }
예제 #2
0
        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
        }