On Tue, 19 Oct 2021 at 05:58, Steve Gatenby via lazarus <
lazarus@lists.lazarus-ide.org> wrote:

> Hoping someone could shed some light on why different results on the
> following code :)
>

There is a peculiar truncation at around 80 characters in your second
example. The output might be getting broken down into multiple lines.

You might want to inspect the raw content of the sData variable before
dumping it into a text file.

Also, try changing this line:
> slTemp.Add(sData);

To this line:
> slTemp.Text := sData;

Denis
-- 
_______________________________________________
lazarus mailing list
lazarus@lists.lazarus-ide.org
https://lists.lazarus-ide.org/listinfo/lazarus

Reply via email to