Ver Mensaje Individual
  #16  
Antiguo 15-05-2003
rlima1978 rlima1978 is offline
Registrado
 
Registrado: may 2003
Posts: 3
Reputación: 0
rlima1978 Va por buen camino
Lightbulb

Mais uma forma:
ds.FieldValues['Texto'];
Esta função retorna um campo variant. Por este motivo deve-se tomar cuidado nas atribuições:

i: integer;
s: string;
i := ds.FiledValues['CampoInteger']; //ok
s := ds.FieldValues['CampoString']; //ok

i := ds.FieldValues['CampoString']; //VariantTypeCastError

[]
Responder Con Cita