<p>Am 24.06.2016 09:44 schrieb "Koenraad Lelong" <<a href="mailto:lazarus2@de-brouwerij.be">lazarus2@de-brouwerij.be</a>>:<br>
> Updated my code :<br>
><br>
>  cTekst:=StrAlloc(600);<br>
><br>
>  cTekst:=#13'Now is the winter of our discontent'#13;<br>
>  cTekst:=StrCat(cTekst,'Made glorious summer by this sun of York;'#13);</p>
<p>You need to use StrCat for the assignment after the StrAlloc as well, otherwise you'd just get rid of the pointer to your allocated memory returning to your original situation.</p>
<p>Regards,<br>
Sven</p>