Ver Mensaje Individual
  #5  
Antiguo 29-05-2008
Avatar de look
look look is offline
Miembro
 
Registrado: sep 2007
Ubicación: The Shire
Posts: 656
Reputación: 17
look Va camino a la fama
Solucion

el problema era en esta linea
Código Delphi [-]
+','+FLOATTOSTR(Q_Ainventarios.FieldBYNAME('PRECIOU').Value)+','+FLOATTOSTR(Q_Ainventarios.FieldBYNA  ME('COSTO').Value)+','+Q_Ainventarios.FieldBYNAME('almacen').Value

la solucion fue esta...

Código Delphi [-]

+','+FLOATTOSTR(Q_Ainventarios.FieldBYNAME('PRECIOU').Value)+','+FLOATTOSTR(Q_Ainventarios.FieldBYNA  ME('COSTO').Value)+','+Q_Ainventarios.FieldBYNAME('almacen').text
Responder Con Cita