private void Studentadd_Click_1(object sender, EventArgs e)
        {
            CreateStudentProfile CreateStudentProfile = new CreateStudentProfile();

            CreateStudentProfile.Show();
            this.Hide();
        }
        private void StudentBox_Click(object sender, EventArgs e)
        {
            CreateStudentProfile studentProfile = new CreateStudentProfile();

            studentProfile.Show();
            this.Hide();
        }