private void button11_Click(object sender, EventArgs e) { try { int id_alumno = Convert.ToInt32(gridView1.GetFocusedRowCellValue("id_alumno").ToString()); string nombre = gridView1.GetFocusedRowCellValue("nombres_completo").ToString(); Form_asesoria Form_asesoria1 = new Form_asesoria(id_alumno, nombre, "1"); Form_asesoria1.ShowDialog(); } catch { MessageBox.Show("No existen Alumnos en este Estado.", "Error al generar cita", MessageBoxButtons.OK, MessageBoxIcon.Information); } }
private void button10_Click(object sender, EventArgs e) { try { int id_alumno = Convert.ToInt32(gridView1.GetFocusedRowCellValue("id_alumno").ToString()); string nombre = gridView1.GetFocusedRowCellValue("nombres_completo").ToString(); Form_asesoria Form_asesoria1 = new Form_asesoria(id_alumno, nombre, "1"); Form_asesoria1.ShowDialog(); } catch { MessageBox.Show("No existen Alumnos en este Estado.", "Error al crear una asesoría", MessageBoxButtons.OK, MessageBoxIcon.Information); } }