Code: Alles auswählen
function fill_stringgrid(Spalte:integer; Ergebnis: TStringList);
var i: byte;
begin
for i:= 1 to Ergebnis. xxxxx
end;
Gruß Heiko
Code: Alles auswählen
function fill_stringgrid(Spalte:integer; Ergebnis: TStringList);
var i: byte;
begin
for i:= 1 to Ergebnis. xxxxx
end;
Code: Alles auswählen
for i:= 1 to Ergebnis. xxxxx
Code: Alles auswählen
for i:= 0 to Ergebnis.count - 1
Das ist mir klar.Mathias hat geschrieben: Sa 17. Feb 2024, 13:36Da ist ein Knall vorprogrammiert.Code: Alles auswählen
for i:= 1 to Ergebnis. xxxxx
Hier ist das Problem. Ich tippe "Ergebnis." und die Autoergänzung bietet "Count" nicht an.Mathias hat geschrieben: Sa 17. Feb 2024, 13:36 Besser so:Code: Alles auswählen
for i:= 0 to Ergebnis.count - 1
Wie gesagt wurde: Deine Funktion hat keinen Rückgabeparameter, deshalb ist das falsch und so kommt das System aus dem Tritt.kralle hat geschrieben: Sa 17. Feb 2024, 13:41 Hier ist das Problem. Ich tippe "Ergebnis." und die Autoergänzung bietet "Count" nicht an.
Bekommst du keinen syntax-Error, auch wen do die ganze for-Schleife weglässt ?Hier ist das Problem. Ich tippe "Ergebnis." und die Autoergänzung bietet "Count" nicht an.