private void noteToolStripMenuItem_Click(object sender, EventArgs e)
        {
            NotaForm formaAbsenta = new NotaForm(id_user);

            formaAbsenta.ShowDialog();
            formaAbsenta.Dispose();
        }
        private void buttonAnuleazaNota_Click(object sender, EventArgs e)
        {
            try
            {
                MedieSemestruBL med    = new MedieSemestruBL();
                NotaBL          notaBL = new NotaBL();
                int             idNota = int.Parse(comboBoxListaNote.SelectedValue.ToString());
                DataTable       m      = med.GetMedieSemIDuri(id_sem, id_elev, id_mat);
                int             medie  = 0;
                if (m != null)
                {
                    medie = int.Parse(m.Rows[0]["medie_semstru"].ToString());
                }

                if (medie == 0)
                {
                    notaBL.DeleteNota(idNota);
                    labelAnulareNota.Text = "Nota a fost stearsa cu succes!";
                }
                else
                {
                    labelAnulareNota.Text = "Nota nu poate fi stearsa pentru ca media e deja incheiata!";
                }
            }
            catch (Exception exc)
            {
                labelAnulareNota.Text = "Media pentru datele dumneavoasta nu figureaza in baza de date, nota nu poate fi stearsa!";
            }

            NotaBL    notaBl    = new NotaBL();
            DataTable listaNote = notaBl.GetNoteByIDuri(id_elev, id_mat, id_sem);
            NotaForm  nf        = new NotaForm();

            nf.setListaNote(listaNote);
        }