public void ReturnToStaffMenu() {//set so this method is availiible to all form FrmStaffMenu frmStaffMenu = new FrmStaffMenu(); this.Hide(); frmStaffMenu.ShowDialog(); this.Close(); }
private void GoToStaffMenu() { //opens the staff menu form closing this one. FrmStaffMenu frmStaffMenu = new FrmStaffMenu(); this.Hide(); frmStaffMenu.ShowDialog(); this.Close(); }