Compiling strikes
Posted: Wed Mar 29, 2017 4:00 pm
Hi,
since a couple of days my compiler can not compile any projects with charts.
OS: Win 8.1 Compiler: Delphi XE5 Enterprise; Tee Version EXE TeeChartVCLFMXStandardSOURCE-2017.20.exe
Message is: [dcc32 Fehler] TeCanvas.pas(5692): E2010 Inkompatible Typen: 'VCLTee.TeCanvas.TTeeCanvas' und 'TeCanvas.TTeeCanvas'
The solution "Sounds as a problem with the prefixes. Have you tried adding "VCLTee" to the "unit scope names"?" did not work...
Please Help!
Frank
since a couple of days my compiler can not compile any projects with charts.
OS: Win 8.1 Compiler: Delphi XE5 Enterprise; Tee Version EXE TeeChartVCLFMXStandardSOURCE-2017.20.exe
Message is: [dcc32 Fehler] TeCanvas.pas(5692): E2010 Inkompatible Typen: 'VCLTee.TeCanvas.TTeeCanvas' und 'TeCanvas.TTeeCanvas'
Code: Select all
Procedure TTeeCanvas.TextOut(const X,Y:TCoordinate; const Text:String; AllowHtml:Boolean);
begin
if AllowHtml then
HtmlTextOut(Self,{$IFDEF FMX}Round{$ENDIF}(X),{$IFDEF FMX}Round{$ENDIF}(Y),Text)
else
TextOut(X,Y,Text);
end;
Please Help!
Frank