 |
BorlandTalk.com Borland discussion newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Werner Guest
|
Posted: Thu Apr 26, 2007 10:57 pm Post subject: QRDesign - TeeChart - QuickReport |
|
|
Hi,
I'm trying to get my reports activated with TeeChart and QRDesign.
In the past this was no problem, but after upgrading to QR4 and QRDesign,
the TeeChart button is not active anymore.
I updated QR4 and patch from TeeChart, so Teechart is accesable in the QR4,
but it is not in QRDesign.
In the QRDesign.inc I activate Teechart but when compiling I have an error
iEditCha.dcu not found.
{.$DEFINE Teechart} { use Teechart (Teechart Pro required),
Here it is quoted to have TeeChart Pro required, but I have TeeChart
standard 4.04.
How can I active back the Teechart in the QRDesign, like it was before
upgrading to QR4 and QRDesign 1.59 ??
Installed versions:
D2006
QR 4.06
TeeChart standard 4.04
QRDesign 1.59.0
Thanks for any help
Werner |
|
| Back to top |
|
 |
Werner Guest
|
Posted: Sat May 05, 2007 1:57 pm Post subject: Re: QRDesign - TeeChart - QuickReport - XMPAN |
|
|
Hope this will be some help for anyone having the same problem,
trying to edit TeeChart in QuickReport - QRDesign, with optional XPMAN
activated.
Have fun,
Werner
Installed Versions:
BDS2006
QR 4.06
QRDesign 1.59.0
TeeChart standard/pro 7.08
1. Install Teechart version Standard/pro version 7.08
=====================================================
- Run install program
- Copy DclTee710.bpl naar ..\windows\system32 !!
1. Modify QRDesign.inc found in QRDesing dir when using TeeChart standard
=========================================================================
- QRDesign.inc deactiveer pro {.$DEFINE Teechart5Pro}
3 Intall TQRChart in QuickReport
================================
- delphi - set search path to ..\TeeChart\QuickReport
- Unzipt TeeChart7_quickreport_BDS2006.zip in ..\TeeChart\QuickReport
directory
( see step 4 first)
- delphi - Open en compile:
Tee7QR4D10.dpk Run-time package. ( ==> change name QR4RunD10
to QR4RunD2006 in Tee7QR4D10.bpl )
DclTee7QR4D10.dpk Design-time package.
- Copy
DclTee7QR4D10.bpl to ..\TeeChart\Delphi10\bin en ..\windows\system32
!!
Tee7QR4D10.bpl dito
DclTee7QR4D10.dcp to ..\TeeChart\Delphi10\lib en ..\bds\4.0\lib
Tee7QR4D10.dcp dito
- delphi - add DclTee7QR4D10.dcp in delphi-Components-Install packages
4. When having XPMan ( XP theme support ) activated and using TeeChart
versions < version 7.11
==============================================================================================
Modifiy procedure in QRTee.pas found in the ..\TeeChart\QuickReport
procedure TQRDBChart.Invalidate;
begin
(* orginal ------------------------------
if AutoRepaint and Assigned(Parent) then
Parent.Invalidate;
----------------------------------------*)
(* copy from QRTee version 7.11 (from Narcis Calvet) *)
if AutoRepaint and Assigned(Parent) then
begin
// Prevent re-entrancy when a XP Theme is enabled.
// ( Parent TWinControl.CMInvalidate calls back again here )
AutoRepaint:=False;
try
Parent.Invalidate;
finally
AutoRepaint:=True;
end;
end;
end; |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|