ungetestet (hab kein delphi auf dem Netbook)
stringgrid to table
Delphi-Quellcode:
....
sl.add('<table>'>;
for i:=0 to SG.RowCount - 1 do
begin
sl.add('<tr>');
for p:= 0 to SG.ColCount - 1 do
begin
sl.add('<td>');
sl.add(SG.Cells[p,i]);
sl.add('</td>');
end;
sl.add('</tr>');
end;
sl.add('</table>');
...
Selbstverständlich kann das ganze noch durch css formatiert werden
(sl = Stringlist
SG = Stringgrid)