Hello,
After installing Teechart and recompile the teechar packages in have to recompile my QRDESING packages (because I activate the Teechart directive in QRDESIGN.INC I needed to recompile them)
For recompiole the QRD Packages I needed tochange the uses of the units like:
{$IFDEF Teechart}
QrTee,TeeProcs, TeEngine,Chart,Series,TeeShape,ArrowCha,VGanttCh,BubbleCh,
{$ENDIF}
for:
{$IFDEF Teechart}
QrTee,VCLTee.TeeProcs, VCLTee.TeEngine,VCLTee.Chart,VCLTee.Series,VCLTee.TeeShape,VCLTee.ArrowCha,VCLTee.GanttCh,VCLTee.BubbleCh,
{$ENDIF}
In units like QRDCtrls and others, this is just an example. How you can see above, I had to aggregate the VCLTee. prefix, because Chart.dcu wasn't in my Teechart installation. only was VCLTee.Chart.dcu, so I changed it and with the other units I did the same. With this change QRD packages compiles. But, Is this correct?
Thanks.
Names of QR Units changed?
Re: Names of QR Units changed?
Hi,
XE2 introduced the prefixes forcing us to use them. But you can add VCLTee to the "unit scope names" in your project without having to edit every unit using TeeChart:
http://www.teechart.net/support/viewtop ... 277#p61277
XE2 introduced the prefixes forcing us to use them. But you can add VCLTee to the "unit scope names" in your project without having to edit every unit using TeeChart:
http://www.teechart.net/support/viewtop ... 277#p61277
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Names of QR Units changed?
Thanks, I did it!