Ejemplo n.º 1
0
 private void btnAgregar_Click(object sender, EventArgs e)
 {
     try
     {
         PresentacionEdicion f = new PresentacionEdicion();
         f.ShowDialog();
         Cargar();
     }
     catch
     {
     }
 }
Ejemplo n.º 2
0
 private void btnEditar_Click(object sender, EventArgs e)
 {
     try
     {
         if (MessageBox.Show("¿Realmente desea EDITAR el registro seleccionado?", "Pregunta", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
         {
             PresentacionEdicion f = new PresentacionEdicion();
             f.txtIDPresentacion.Text = dtgPresentacion.CurrentRow.Cells["IDPresentacion"].Value.ToString();
             f.txtPresentacion.Text   = dtgPresentacion.CurrentRow.Cells["Presentacion"].Value.ToString();
             f.ShowDialog();
             Cargar();
         }
     }
     catch
     {
     }
 }