I'm new to Delphi, and I was migrating a very old Delphi project to Embarcadero RAD Studio 2010. I found a problem using strings. Here is the code:
ProgramaResultadosType = record
Version: string;
TituloPrincipal : string;
BloquesResultados : VectorBloquesResultadosType;
end;
FileOfProgramaResultadosType = file of ProgramaResultadosType;
And the mistake ...
"E2155 Type '% s' needs to be completed - not allowed in file type
I know this is a known bug for many delphi developers when you do not specify the line size.
Basically, I would like to deactivate the huge lines directive, like older versions of RAD Studio, but I can’t find out in the 2010 version.
source
share