private void btnDelete_Click(object sender, EventArgs e)
        {
            EditStudentForm f1 = new EditStudentForm();

            f1.Show();
            this.Hide();
        }
        private void butDeleteStudent_Click(object sender, EventArgs e)
        {
            EditStudentForm editform = new EditStudentForm();

            editform.Show();
        }