Exemple #1
0
        private void btnAgregar_Click(object sender, EventArgs e)
        {
            EdicionOpcion frm = new EdicionOpcion();

            frm.ShowDialog();
            CargarDatos();
        }
Exemple #2
0
 private void btnEditar_Click(object sender, EventArgs e)
 {
     try
     {
         if (MessageBox.Show("Desea editar el registro seleccionado?", "Pregunta", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
         {
             EdicionOpcion frm = new EdicionOpcion();
             frm.txbIDOpcion.Text      = dtgRegistros.CurrentRow.Cells[0].Value.ToString();
             frm.txbOpciones.Text      = dtgRegistros.CurrentRow.Cells[1].Value.ToString();
             frm.txbClasificacion.Text = dtgRegistros.CurrentRow.Cells[2].Value.ToString();
             frm.ShowDialog();
             CargarDatos();
         }
     }
     catch
     {
         MessageBox.Show("Ocurrio un Error a la hora de EDITAR", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }