Thema: Delphi TStrings Liste

Einzelnen Beitrag anzeigen

tmrxxoja

Registriert seit: 16. Mär 2008
Ort: Helgoland
27 Beiträge
 
Delphi 7 Professional
 
#1

TStrings Liste

  Alt 16. Mär 2008, 13:54
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;
  Mit Zitat antworten Zitat