Example #1
0
        public void ReturnToStaffMenu()
        {//set so this method is availiible to all form
            FrmStaffMenu frmStaffMenu = new FrmStaffMenu();

            this.Hide();
            frmStaffMenu.ShowDialog();
            this.Close();
        }
Example #2
0
        private void GoToStaffMenu()
        { //opens the staff menu form closing this one.
            FrmStaffMenu frmStaffMenu = new FrmStaffMenu();

            this.Hide();
            frmStaffMenu.ShowDialog();
            this.Close();
        }