Ver Mensaje Individual
  #2  
Antiguo 27-11-2021
aledieb aledieb is offline
Miembro
 
Registrado: jun 2005
Ubicación: Buenos Aires, Argentina
Posts: 141
Reputación: 19
aledieb Va por buen camino
Para que te muestre todos debes hacer un while esta el eof

Código Delphi [-]
while not clientdataset.eof do
begin
  memo1.Lines.Add(clientdataset.FieldByName('Owner').AsString);
  clientdataset.next;
end;
__________________
Suerte
Alejandro
Responder Con Cita