This useful Split function is in TAChartUtils
function Split(AString: String; ADest: TStrings = nil; ADelimiter: Char = '|'): TStrings;
...
I doubt this could be the function from the TAChartUtils, because it uses Char as a delimeter, and *carmarri uses #13#10, which is a string. Am I wrong?
Anyway, he should better report the bug to the author of the third party function.
...
mylist := Split(#13#10, mytext);
...