private void button4_Click(object sender, EventArgs e) { AlumnosEspeciales cambio = new AlumnosEspeciales(this, true, id, exp); cambio.ShowDialog(); }
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){ } }
private void button3_Click(object sender, EventArgs e) { AlumnosEspeciales ae = new AlumnosEspeciales(this, true, "", ""); ae.ShowDialog(); }