Page 1 of 2

TeeChart Pro in Quick report designer 5.06 for Delphi XE8

Posted: Wed Feb 22, 2017 7:06 am
by 16879982
Hello,

how can I integrate TeeChart Pro into Quick report designer 5.06 for Delphi XE8?
(to create or modify quick report in my application)
I installed TeeChar in Delphi and package for quick report, It works. I can place a chart on form or on a report but only in delphi ide.
Tee chart wasn't integrated in TReportDesignerDialog so I can't work with chart in quick report when application is running...
How to add it to TReportDesignerDialog?

I need it works the same way as in the old version of quick report designer...see attached print screen of an old quick report designer, there is teechart integrated
thanks for help

Re: TeeChart Pro in Quick report designer 5.06 for Delphi XE8

Posted: Wed Feb 22, 2017 10:55 am
by yeray
Hello,

Have you asked QuickReport how to customize their TReportDesignerDialog?

Re: TeeChart Pro in Quick report designer 5.06 for Delphi XE8

Posted: Wed Feb 22, 2017 12:09 pm
by 16879982
Hello, not yet, I am going to do it.

Re: TeeChart Pro in Quick report designer 5.06 for Delphi XE8

Posted: Thu Mar 09, 2017 5:04 pm
by 16879982
Hello,
I asked for it in QBS Software Ltd, producer of Quick Report
They lost source code for it.
We are trying to create a new source code, but we didn't succeed.
Can you help us?
There is attached unit which should register tqrchart in quick report designer
My application fails in initialization of unit qrd3rdpartycontrol_QRDTeeChar with message runtime error 217 at 004BC068
thanks for help

Re: TeeChart Pro in Quick report designer 5.06 for Delphi XE8

Posted: Thu Mar 09, 2017 5:06 pm
by 16879982
the unit

Re: TeeChart Pro in Quick report designer 5.06 for Delphi XE8

Posted: Wed Mar 15, 2017 7:47 am
by yeray
Hello,

I've tried to use this unit in a Delphi 7 with QuickReport 5 installed, but I can't find any TQRepDesigner in my installation.
This is the palette I see in QuickReport tab:
delphi32_2017-03-15_08-44-44.png
delphi32_2017-03-15_08-44-44.png (3.47 KiB) Viewed 19000 times
delphi32_2017-03-15_08-45-24.png
delphi32_2017-03-15_08-45-24.png (4.22 KiB) Viewed 18993 times

Re: TeeChart Pro in Quick report designer 5.06 for Delphi XE8

Posted: Wed Mar 15, 2017 12:49 pm
by 16879982
Hello, TQRepDesigner is/ was paid version of quick report. You need a PRO version of QR
thx

Re: TeeChart Pro in Quick report designer 5.06 for Delphi XE8

Posted: Thu Mar 16, 2017 1:08 pm
by yeray
Hello,

Here the list of components I get for QuickReport 6 Pro for RAD XE 10.1 Berlin. I can't find any *Designer*:
QR6.png
QR6.png (26.59 KiB) Viewed 18975 times

Re: TeeChart Pro in Quick report designer 5.06 for Delphi XE8

Posted: Fri Mar 17, 2017 7:20 am
by 16879982
it isn't in QReport but in QRDesign
there is attached test project (delphi XE8), initialization in unit qrd3rdpartycontrol_QRDTeeChar is in {} (the part where it fails)

Re: TeeChart Pro in Quick report designer 5.06 for Delphi XE8

Posted: Wed Mar 29, 2017 5:57 am
by 16879982
Hello a new? a progress? thanks

Re: TeeChart Pro in Quick report designer 5.06 for Delphi XE8

Posted: Thu Mar 30, 2017 8:44 am
by yeray
Hello,

I've installed QRDesign into Berlin (QRD159QR6D10_1_Berlin_W64.exe) but it fails to load the component "QRDesign design-time" (dclqrd_DXE10_1.bpl).
The procedure entry point @Quickrpt@TCustomQuickRep@NewPage$qqro could not be located in the dynamic library E:\Program Files (x86)\Embarcadero\Studio\18.0\bin\QRD_DXE10_1_W64.bpl.
And when I try to open the project in the QRDesignerTest.zip in your last message, it fails to find class TReportDesignerDialog, probably because the component above failed loading.

I'll try to install QRDesign into XE8...

Re: TeeChart Pro in Quick report designer 5.06 for Delphi XE8

Posted: Thu Mar 30, 2017 9:39 am
by yeray
Hello,

Same error with RAD XE8 after installing QR6DXE8_W64_installer.exe and QRD159QR6DXE8W64.

Here the packages for the integration of TeeChart Pro v2017 into QuickReport v6 in RAD XE8:
Tee9QR6D22.zip
(147.87 KiB) Downloaded 693 times

Re: TeeChart Pro in Quick report designer 5.06 for Delphi XE8

Posted: Thu Mar 30, 2017 9:10 pm
by 16879982
Hi, thanks

I found the problems, it works now some how... I miss border on the first chart...

Do you have a hint how to create chart editor fastly/ easily?
thanks

Re: TeeChart Pro in Quick report designer 5.06 for Delphi XE8

Posted: Fri Mar 31, 2017 8:29 am
by yeray
Hello,
Franta wrote:Do you have a hint how to create chart editor fastly/ easily?
The editor can be called as follows:

Code: Select all

uses EditChar;

procedure TForm1.Button1Click(Sender: TObject);
begin
   EditChart(Self, QRDBChart1);
end;
However, note the editor is designed to help the developers to build and test their applications, not to be accessed by the final users, so we don't recommend giving access to it.

Re: TeeChart Pro in Quick report designer 5.06 for Delphi XE8

Posted: Sat Apr 15, 2017 8:47 am
by 16879982
Hello,
EditChart works fine, but I miss Dataset in series/datasource

How can I add dataset? and how add list of tables...
(in Delphi IDE dataset and tables are available)
thanks