moin moin
ich brauch mal eure hilfe mit TStrings
also ich habe ein Grid "Grid" und eine String liste "aList : TStrings;"
hmm wie bekomme ich die daten aus der liste nun in das Grid rein ?
gut eine schleife durchlaufen
Delphi-Quellcode:
inc(nBild);
Grid.RowCount := Grid.RowCount+1;
Grid.Cells[0,nBild] := 'test1';
das ist nicht das problem aber wie bekomme ich die daten aus den TStrings raus?
Delphi-Quellcode:
for n := 0 to aList.Count do begin
inc(nBild);
Grid.RowCount := Grid.RowCount+1;
Grid.Cells[0,nBild] := 'test1';
Grid.Cells[1,nBild] := aList[nBild];
Grid.Cells[2,nBild] := 'test3';
end;