Ver Mensaje Individual
  #6  
Antiguo 23-03-2018
[egostar] egostar is offline
Registrado
 
Registrado: feb 2006
Posts: 6.556
Reputación: 25
egostar Va camino a la fama
Hola

Y porque no usar directamente la propiedad Cells del StringGrid.

Código Delphi [-]
procedure TForm1.actualizaGrid(Texto: string; Registros, Columna: integer; grid: TStringGrid);
var
  Renglon: Integer;
begin
  for Renglon := 1 to Registros do
  begin
    grid.Cells[Columna, Renglon] := Texto;
  end;
end;

Saludos
__________________
"La forma de empezar es dejar de hablar y empezar a hacerlo." - Walt Disney
Responder Con Cita