Reputation: 11
I'm having an a error when I'm creating or editing a TEXT OBJECT on Fastreport using Delphi 7.
Here's the error:
Error reading TextTS->ExplicitLeft: Property ExplicitLeft does not exist.
What am I doing wrong?
Upvotes: 1
Views: 3441
Reputation: 76617
As per @RUZZ's link:
You are getting this error because you're opening a DFM file that was created by a Delphi version newer than D7.
ExplicitLeft
is a property unknown in D7, is was added in a later version (not sure which).
There are three options:
Explicit*
references. Needless to say if your program accesses post Delphi 7 properties you'll need to do some refactoring of your code.
Upvotes: 3