<p dir="ltr">On Fri, Dec 19, 2014, 12:49 Ralf Quint <<a href="mailto:freedos.la@gmail.com">freedos.la@gmail.com</a>> wrote:</p>
<blockquote><p dir="ltr">I have been trying to use tStringList in a larger project of mine, but<br>
this just keeps bombing out with a exception.<br>
I have been able to reproduce the problem with this very simple test<br>
program:</p>
<p dir="ltr">program project1;</p>
<p dir="ltr">USES Classes;</p>
<p dir="ltr">Var T : tStringList;<br>
     S : String;<br>
begin<br>
   S := 'Test';<br>
   T.Create;<br>
// T.Clear;<br>
   T.Add (S);<br>
   T.Free;<br>
end.</p>
<p dir="ltr">It will throw the exception at each and every instruction using T after<br>
the T.Create statement.</p>
<p dir="ltr">The project is a simple command line program, tested both with Lazarus<br>
1.2.6 and the included default install of FPC 2.6.4 on either Windows<br>
8.1/64 or Windows 10/32...<br><br></p>
<p dir="ltr">---<br>
This email has been checked for viruses by Avast antivirus software.<br>
<a href="http://www.avast.com">http://www.avast.com</a></p>
<p dir="ltr">_______________________________________________<br>
fpc-pascal maillist  -  <a href="mailto:fpc-pascal@lists.freepascal.org">fpc-pascal@lists.freepascal.org</a><br>
<a href="http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal">http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal</a><br>
</p>
</blockquote>
<p dir="ltr"></p>
<p dir="ltr">Try this,<br>
</p>
<p dir="ltr"><br>
</p>
<p dir="ltr">T := tstringlist.create;<br>
</p>