Ver Mensaje Individual
  #5  
Antiguo 19-11-2003
Avatar de FNADALO
FNADALO FNADALO is offline
Miembro
 
Registrado: oct 2003
Ubicación: Palma de Mallorca
Posts: 97
Reputación: 21
FNADALO Va por buen camino
Gracias Cadetill por tus aportaciones lo he solucionado del
siguiente modo:
var
F : String;
I : Integer;
Begin
for i := 0 to AdoQuery1.FieldDeflist.count -1 do
begin
F:= AdoQuery1.FieldDefList.FieldDefs[i]
case F.DataType of
ftString: .....
ftInteger: ....
else
String
end;
end;
end;
end;
end.
Responder Con Cita