Hi,
i am trying to install QR... componenten but without success.
First i have checked Quickreport option during recompile...but unfortunately no Quickreport components are added in IDE and no bpl's are created. Is this option working?
After that i tried using TeeQR925 & DclTQR925, compiling was successful, i have put TeeQR925.bpl in system32 windows directory but when i try to add DclTQR925 in Delphi i am getting error:
Can't load package DclTQR925.bpl.
Delphi 10.2 & laatste version of Teechart v2020.30
Thanks
Pedja
Quickreport installation problem
Re: Quickreport installation problem
Update: I have succeeded to install TQRChart but a new problem appears: i can not choose Dataset in data source tab?
Note: In standaard DBChart i can choose DataSet but in TQRChart not
Note: In standaard DBChart i can choose DataSet but in TQRChart not
Re: Quickreport installation problem
Hello,
The TQRChart packages you are using may be referencing the DclTee (Standard) package instead of the DclTeePro package.
Find here the packages precompiled for RAD Tokyo 10.2.3, QuickReport 6 and TeeChart Pro v2020.30:
The TQRChart packages you are using may be referencing the DclTee (Standard) package instead of the DclTeePro package.
Find here the packages precompiled for RAD Tokyo 10.2.3, QuickReport 6 and TeeChart Pro v2020.30:
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Quickreport installation problem
Hi,
i solved directly in VCLTee.QrTee.pas with replacing all TCustomChart to TCustomDBChart, such as:
TQRDBChart=class({$IFNDEF NOUSE_BDE}TCustomDBChart{$ELSE}TCustomDBChart{$ENDIF})
Somthing to do with $IFNDEF NOUSE_BDE?
Regards
i solved directly in VCLTee.QrTee.pas with replacing all TCustomChart to TCustomDBChart, such as:
TQRDBChart=class({$IFNDEF NOUSE_BDE}TCustomDBChart{$ELSE}TCustomDBChart{$ENDIF})
Somthing to do with $IFNDEF NOUSE_BDE?
Regards
Re: Quickreport installation problem
Hello,
I've replaced all the that
That way, only Starter IDEs, which don't have DB, won't have access to Dataset.
I've replaced all the that
{$IFNDEF NOUSE_BDE}
for {$IFNDEF NOTEEDB}
in this unit.
Code: Select all
TQRDBChart=class({$IFNDEF NOTEEDB}TCustomDBChart{$ELSE}TCustomChart{$ENDIF})
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |