public FrEntryScore(Student student, DetailScore score, FrInputScore inputscore)
 {
     InitializeComponent();
     this.student    = student;
     this.score      = score;
     this.inputscore = inputscore;
     va = new Validation(this.Controls, EVAlidation);
 }
        private void BtnScore_Click(object sender, EventArgs e)
        {
            FrInputScore score = new FrInputScore(this.teacher);

            score.Show();
        }