TSearchRec.Size not known

Hi,

Tested this with latest version of tms scripter (delphi 2007).
Following script will complain about fs.size as unknown property.
If I change type of Size from Int64 to Integer, it works. Is there some issue with D2007 & Int64.

  path := 'C:\temp';
  file := '*';
  fs := nil;
  if findfirst( path+file, 0, fs) = 0 then
  begin
    showmessage(DateToStr(FileDateTodateTime(fs.time))+#13+inttostr(fs.Size));
    findclose(fs);
  end;