Dann zähl halt die notwendigen Zeilen mit
(Pseudocode weil mir grad mein Delphi fehlt)
Delphi-Quellcode:
RowCount := high(xyarray) + FixRows;
j := 0;
for i := low(xyarray) to high(xyarray) do
begin
If xyarray[i] = 'text' then
begin
inc(j);
MitIrgendEinerProcedureDasStringGridBefüllen; //hier das Grid befüllen, in der Zeile "j"
end;
end;
RowCount := j + FixRows;
mfg
Helmi
>> Theorie ist Wissen, dass nicht funktioniert - Praxis ist, wenn alles funktioniert und keiner weiss warum! <<