コード例 #1
0
       private void button4_Click(object sender, EventArgs e)
       {
           
 
           AlumnosEspeciales cambio = new AlumnosEspeciales(this, true, id, exp);
           cambio.ShowDialog();
       }
コード例 #2
0
        private void button5_Click_1(object sender, EventArgs e)
        {
           try{

                exp = tabla1.CurrentRow.Cells["Expediente externo"].Value.ToString();
                id = tabla1.CurrentRow.Cells["Expediente interno"].Value.ToString();
                AlumnosEspeciales cambio = new AlumnosEspeciales(this, false, id, exp);
                cambio.ShowDialog();
            
             }catch(NullReferenceException){ 

       
          }
           
        }
コード例 #3
0
 private void button3_Click(object sender, EventArgs e)
 {
     AlumnosEspeciales ae = new AlumnosEspeciales(this, true, "", "");
     ae.ShowDialog();
 }