Ver Mensaje Individual
  #9 (permalink)  
Antiguo 04/03/2010, 14:51
Avatar de HiToGoRoShi
HiToGoRoShi
 
Fecha de Ingreso: abril-2008
Mensajes: 849
Antigüedad: 16 años, 7 meses
Puntos: 31
Respuesta: Õbtener el valor X,Y de un datagridview C#

No se puede aplicar a operandos del tipo double y sistem.windows.form.datagridviewcell

Mira a mi se me ocurrio otro codigo, algo prehistorico pero funciona maso menos ya que suma mal, dale una oejada que pude haber fallado

Código C:
Ver original
  1. double acumulador = 0;
  2.  
  3.                     for (int i = 0; i < dgwProforma.Rows.Count-1; i++)
  4.                     {
  5.                         acumulador = precioA + acumulador;                        
  6.                     }
  7.  
  8.                     double subtotal = acumulador;
  9.                     precioA = 0;
  10.                    
  11.                     txtSubtotal.Text = subtotal.ToString();
  12.                     txtIgv.Text = (subtotal * 0.19).ToString();
  13.                     txtTotal.Text = (subtotal + (subtotal * 0.19)).ToString();

La cosa esta en que SUMA mal, y nose xq por mas que le doy vuelta al asunto pero al menos funciona, mal pero acumula aunque no siempre :S