Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
for i := 0 to mystringgrid.RowCount - 1 do
if mystringgrid.Cols[i].Count >= n then
mystringgrid.Cols[i].Delete(n);
for i := n to StringGrid1.RowCount - 2 do
StringGrid1.Rows[i].CommaText := StringGrid1.Rows[i+1].CommaText;
StringGrid1.RowCount := StringGrid1.RowCount - 1;