示例#1
0
 private void btnEntregar_Click(object sender, EventArgs e)
 {
     try
     {
         if (MessageBox.Show("Desea realmente ejecutar esta accion?", "Profit Expasion", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == System.Windows.Forms.DialogResult.Yes)
         {
             using (Profit_RGEntities context = new Profit_RGEntities())
             {
                 context.pActualizarPedido(Emp, Ped, cboEntrega.SelectedValue.ToString().Trim(), cboRecibe.SelectedValue.ToString().Trim());
                 this.Dispose();
             }
         }
     }
     catch (EntityException ex)
     {
         MessageBox.Show(ex.InnerException.Message, "Profit Expansion", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
     catch (Exception ex1)
     {
         MessageBox.Show(ex1.Message, "Profit Expansion", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }