Delphi-Quellcode:
for i := 1 to (StringGrid.RowCount - 1) do
F.Add(StringGrid.cells[0,i]);
oder
Delphi-Quellcode:
textdummy:string;
....
for i := 1 to (StringGrid.RowCount - 1) do
textdummy:=StringGrid.Rows[i].CommaText;
for i:=1 to length(textdummy) do
if textdummy[i]=',' then textdummy[i]:=' ';
f.add(textdummy);
oder du packst eine Row in den TextDummy und ersetzt die #13#10 durch Blanks.
Gruß
K-H