Its quite straight forward really ,
Say we have a stringgrid called Grid, we would loop through the columns adding the string to the specified row(ie row 1)
Such as
for col:= 1 to Grid.Colcount
Grid.Cells[col, row]:= 'Hi boys this is a beutiful job';
Hope this helps