Ich habe folgenden Code:
Delphi-Quellcode:
Text1 := TStringList.Create;
Text2 := TStringList.Create;
...
SpaltenCBX.Items.Delimiter := ';';
text1.addstrings(SpaltenCBX.Items.DelimitedText + ';' + #13);
...
text1.addstrings(Text1 + 'Mittelwert;');
text2 := 'Standardabw.;';
...
z:= foo;
Text1.addstrings(Text1 + floattostr(z) + ';');
y:= foo_anders;
Text2.addstrings( Text2 + floattostr(y) + ';');
end;
Text1.addstrings(Text1 + #13 + Text2 + #13);
Text2.addstrings('')
end;
Nun bekomm' ich in überall 'nen Typenkonflikt angezeigt. Gibt es kein StrToStrings o.ä.?