private void toolStripMenuItem4_Click(object sender, EventArgs e)
        {
            this.Hide();
            admin_view_all am = new admin_view_all();

            am.Show();
        }
예제 #2
0
        //If click on specific Menu Strip item then show that clicked form and hide this one.
        private void viewAllToolStripMenuItem_Click_2(object sender, EventArgs e)
        {
            this.Hide();
            admin_view_all dm = new admin_view_all();

            dm.Show();
        }