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

I'm trying to open old projects generated in Delphi 7 with Delphi 2009. On some projects, this causes the following error message from the IDE:

"An invalid character was found in text content"

The affected projects are working fine in the old IDE. How can I solve this?

link|improve this question

60% accept rate
Where is the error message displayed? Could you post a delphi screenshot? – ulrichb Jun 5 '09 at 14:11
1  
There you go: img19.imageshack.us/img19/9494/invalidcharacter.jpg – kaeff Jun 9 '09 at 10:39
feedback

2 Answers

Sounds like you have non-compatible 8-bit character in your .dpr file. Maybe it helps if you either clean the file or convert it to utf-8 with some text editor and try again.

link|improve this answer
What are non-compatible 8-bit characters? Does Delphi 7 write those? Anyway, aren't there unicode code points for every bit combination in the first byte due to unicode's downward compatibility? When I open and convert the dpr as text files with Notepad++, Delphi 2009 agrees to open them. Although, doing the same using a small application written in 2009 with the TStringList.SaveToFile(string, TEncoding) method seems to fail. Doing this using some of the standard TEncoding's (e.g. TEncoding.UTF8, TEncoding.Unicode), the same error message still occurs. – kaeff Jun 9 '09 at 10:32
feedback
up vote 0 down vote accepted

I could track down the problem. Although the project files had already been Unicode-encoded, there were some special characters in the .cfg file that caused the hiccups. They were the value of a special file attribute that wasn't visible in the IDE.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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