up vote 1 down vote favorite
1
share [g+] share [fb]

I am using Delphi 2007 and I am trying to make record type file. In Delphi 7 there were no problems for me.

Type
Kompiuteris = record
...
end;
Failas = file of Kompiuteris;

But in Delphi 2007 I get problem. Error says that: Type "Kompiuteris" needs finalization. So, what is wrong?

link|improve this question

50% accept rate
1  
Please show us what ... really is. – Ulrich Gerhardt Mar 9 '10 at 15:59
There is lots of strings. Now I get the probelm and going to solve it – gedO Mar 9 '10 at 16:07
Posting a record definition as '...' and then saying the record definition has problems is not helpful. In the future, post the actual definition of the code causing the issue, and include the version of Delphi you're using (as different versions have different features), and you'll stand a much better chance of getting help. You got very lucky this time that the error message was clear enough for @glob to be able to help so quickly. – Ken White Mar 10 '10 at 15:17
feedback

1 Answer

up vote 4 down vote accepted

From the documentation:

Certain types are treated specially by the compiler on an internal basis in that they must be correctly finalized to release any resources that they might currently own. Because the compiler cannot determine what type is actually stored in a record's variant section at runtime, it is not possible to guarantee that these special data types are correctly finalized.

String is one of those data types which need finalization, and as such they cannot be stored in a File type.

link|improve this answer
Ou... Now erethings getting clearer – gedO Mar 9 '10 at 16:08
If I use Delphi 2005 do I get the same error?? – gedO Mar 9 '10 at 17:30
1  
Yes. You would get the same error in all Delphi versions greater than or equal to 2. Perhaps you turned off the "long strings" compiler option. – Rob Kennedy Mar 9 '10 at 17:35
And how to turn it on?? – gedO Mar 9 '10 at 19:04
1  
Ged, please consider asking a new question: How do I control the "long strings" compiler option? There are several ways, and it's cumbersome to explain in the comments. – Rob Kennedy Mar 10 '10 at 1:08
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.