<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body><div>Hi,<br></div>
<div>As question explained here <a href="http://stackoverflow.com/questions/6493727/can-i-assign-items-in-an-array-all-at-once-in-delphi-pascal">http://stackoverflow.com/questions/6493727/can-i-assign-items-in-an-array-all-at-once-in-delphi-pascal</a> and the easiest answer is :<br></div>
<blockquote><pre class="lang-pascal prettyprint prettyprinted"><code><span class="colour" style="color:rgb(0, 0, 139)">type</span><span class="colour" style="color:black">
  TIntArray =</span><span class="colour" style="color:rgb(0, 0, 139)">arrayof</span><span class="colour" style="color:black"> integer;</span><span class="colour" style="color:rgb(0, 0, 139)">procedure</span><span class="colour" style="color:black"> TForm1.Button1Click(Sender: TObject);</span><span class="colour" style="color:rgb(0, 0, 139)">var</span><span class="colour" style="color:black">
  MyArr: TIntArray;</span><span class="colour" style="color:rgb(0, 0, 139)">begin</span><span class="colour" style="color:black">
  MyArr := TIntArray.Create(</span><span class="colour" style="color:maroon">10</span><span class="colour" style="color:black">,</span><span class="colour" style="color:maroon">20</span><span class="colour" style="color:black">,</span><span class="colour" style="color:maroon">30</span><span class="colour" style="color:black">,</span><span class="colour" style="color:maroon">40</span><span class="colour" style="color:black">);</span><span class="colour" style="color:rgb(0, 0, 139)">end</span><span class="colour" style="color:black">;</span></code><br></pre></blockquote><div> </div>
<div>But problems are : <br></div>
<div>Lazarus doesnt recognize <span style="color: black; line-height: 1.25;">Create for array but FPC will compile it but it seems it doesnt work so I want to ask what should I do for </span><font color="#000000">assign items in an array all at once in FreePascal?</font><br></div>
<div> </div>
<div id="sig12586409"><div class="signature">Regards,<br></div>
<div class="signature">Ara<br></div>
</div>
<div> </div>
<pre>
-- 
http://www.fastmail.com - A fast, anti-spam email service.
</pre>
</body>
</html>