private void educationHistroryToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (studentEducation.IsDisposed)
     {
         studentEducation = new Presentation.frmStudentEducation();
     }
     studentEducation.MdiParent = this;
     studentEducation.Show();
     studentEducation.BringToFront();
 }
示例#2
0
        private void btnSubmit_Click(object sender, EventArgs e)
        {
            int er = 0;

            ep.Clear();

            if (txtStudentId.Text == "")
            {
                er++;
                ep.SetError(txtStudentId, "Requered");
            }

            if (txtEducationId.Text == "")
            {
                er++;
                ep.SetError(txtEducationId, "Requered");
            }

            if (txtEducationBoardId.Text == "")
            {
                er++;
                ep.SetError(txtEducationBoardId, "Requered");
            }

            if (txtYear.Text == "")
            {
                er++;
                ep.SetError(txtYear, "Requered");
            }

            if (txtRegistration.Text == "")
            {
                er++;
                ep.SetError(txtRegistration, "Requered");
            }

            if (txtRoll.Text == "")
            {
                er++;
                ep.SetError(txtRoll, "Requered");
            }

            if (er > 0)
            {
                return;
            }

            DAL.StudentEducation studentEducation = new DAL.StudentEducation();

            studentEducation.StudentId        = Convert.ToInt32(txtStudentId.Text);
            studentEducation.EducationId      = Convert.ToInt32(txtEducationId.Text);
            studentEducation.EducationBoardId = Convert.ToInt32(txtEducationBoardId.Text);
            studentEducation.Registration     = txtRegistration.Text;
            studentEducation.Roll             = txtRoll.Text;
            studentEducation.Remarks          = txtRemarks.Text;
            studentEducation.Year             = Convert.ToInt32(txtYear.Text);

            //studentEducation.Document = btnDocument.Text;
            studentEducation.DocumentType = txtDocument.Text;

            if (studentEducation.Update())
            {
                MessageBox.Show("Recored successfully updated !");

                frmStudentEducation stEdu = new frmStudentEducation();
                stEdu.btnLoad_Click(null, null);
            }
            else
            {
                MessageBox.Show(studentEducation.Error);
            }
        }