コード例 #1
0
 private void BotonEditarApunte_Click(object sender, EventArgs e)
 {
     if (listBox_Apuntes.SelectedItem == null)
     {
         MessageBox.Show("Por favor seleccione algun apunte.");
     }
     else
     {
         Notes   notes   = (Notes)listBox_Apuntes.SelectedItem;
         Apuntes apuntes = new Apuntes(BdD, notes, alumno);
         Close();
         apuntes.Show();
     }
 }
コード例 #2
0
        private void button_CrearAp_Click(object sender, EventArgs e)
        {
            Apuntes apuntes = new Apuntes(BdD, NameAl);

            apuntes.Show();
        }