Ver Mensaje Individual
  #1 (permalink)  
Antiguo 08/03/2012, 07:38
carnero
 
Fecha de Ingreso: noviembre-2009
Mensajes: 315
Antigüedad: 14 años, 5 meses
Puntos: 0
Decimales datareport

HOLA QUE TAL ESTOY TRATANDO DE MOSTRAR EN UN DATA REPORT UN VALOR POR EJEMPLO 3,74 Y NO LO LOGRO.

Código vb:
Ver original
  1. With rst.Fields
  2.         .Append "PESO", adDecimal
  3.     End With
  4.    
  5. With rst2
  6. f = 0
  7.      For f = 0 To UBound(F)
  8.         .AddNew Array("PESO"), _
  9.                 Array(" " & F(f, 0) & "")<---- cargo los valores al rst, que son valores como 3,74
  10.       Next
  11. End With
  12.   Set DataReport1.DataSource = rst2
el valor que me muestra el datareport es 374

espero me entiendan y me puedan ayudar gracias