private void registrarEstudianteToolStripMenuItem_Click(object sender, EventArgs e) { if (Nivel > 1) { frmRegistro pRegistro = new frmRegistro(); pRegistro.Show(); } else { MessageBox.Show("No Tienenes Acceso, contacta el administrador del sistema", "Menu", MessageBoxButtons.OK, MessageBoxIcon.Hand); } }
private void btnEliminar_Click(object sender, EventArgs e) { frmRegistro re = new frmRegistro(); if (dataGridView1.SelectedRows.Count == 1) { try { int ID = Convert.ToInt32(dataGridView1.CurrentRow.Cells[12].Value); re.GetIDestudiante = EstudianteDB.SeleccionarEstudiante(ID); re.ShowDialog(); } catch (Exception ex) { MessageBox.Show(ex.Message, "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Error); } } else { MessageBox.Show("No se ha seleccionado un estudiante de la tabla", "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Warning); } }