Пример #1
0
 private void grdCaraSurtidor_CellValueChanged(object sender, DataGridViewCellEventArgs e)
 {
     try
     {
         if (EsGridCaraContruido)
         {
             oHelper.ActualizarCarasSurtidorFullStation(Int16.Parse(grdCaraSurtidor.Rows[e.RowIndex].Cells["IdCaraSurtidor"].Value.ToString()), Int16.Parse(grdCaraSurtidor.Rows[e.RowIndex].Cells["Surtidor"].Value.ToString()));
             RecuperarCarasSurtidoresFullStation();
         }
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message);
     }
 }