<div dir="ltr">fpc-2.6.4-1.x86_64. says "Argument can't be assigned to" when trying to compile the following: <br><div><br>type<br> TickType = Int64;<br><br> TimebaseData = record<br> TicksFrequency: TickType;<br>
end;<br><br> TEpikTimer= class(TComponent)<br> private<br> FHWTicks:TimeBaseData;<br> Public<br> property HWTimebase: TimeBaseData read FHWTicks write FHWTicks;<br><br> TForm1 = class(TForm);<br></div>
<div> public<br> ET:TEpikTimer;<br><br> procedure TForm1.Button8CLICK(Sender: TObject);<br> begin <br> ET.HWTimebase.TicksFrequency:=10; // Fails<br><br>This used to compile and seems like a straightforward int64 assignment. Has something changed where this is no longer allowed?<br>
<br></div><div>Thanks,<br><br></div><div>-Tom<br><br></div></div>