Hello,
Setting up TeeChart for Delphi 10.2 was failing on my workstation due to a conflict in TTextblock class, it seems there is a class with similar name in TMS Diagram Package, can you add a prefix to your class? I have also contacted TMS.
Regards,
Nader
TTextblock Class Conflict
Re: TTextblock Class Conflict
Hello,
I see this is defined in TeeBlocks. Are you using TeeMaker/Chart3D?
We'll try to add the VCLTee/FMXTee prefix to it, as usually.
I see this is defined in TeeBlocks. Are you using TeeMaker/Chart3D?
We'll try to add the VCLTee/FMXTee prefix to it, as usually.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: TTextblock Class Conflict
When will the TTextblock class prefix be added? Or has it already been added?
Is it easy to do it yourself in the code?
regards, Wilfried
Is it easy to do it yourself in the code?
regards, Wilfried
Re: TTextblock Class Conflict
Hello Wilfried,
We've added the unit name (TeeBlocks) to every TTextBlock reference in TeeMaker/Chart3D sources to avoid this class conflict.
Ie, this code:
Is now this:
We've added the unit name (TeeBlocks) to every TTextBlock reference in TeeMaker/Chart3D sources to avoid this class conflict.
Ie, this code:
Code: Select all
result:=TTextBlock.Create(IOwner);
Code: Select all
result:=TeeBlocks.TTextBlock.Create(IOwner);
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |