Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
i := 0;
while StringGrid1.Cells[i,0].Text <> '' do inc(i);
StringGrid1.Cells[i,0] := 'blabla';
int i=1;
while (StringGrid1->Cells[i,0] = '' ) { i = i+1; };
StringGrid1->Cells[i,0] = 'bla';
int i=1;
while (StringGrid1->Cells[i,0] == "" ) { i = i+1; };
StringGrid1->Cells[i,0] = "bla";