I had D2007, QuickReport Pro 4.07 and TeeChart Standard 7.12 installed.
In C:\Program Files\Steema Software\TeeChart Standard 7 for Delphi 2007\Delphi11\QuickReport\Install.txt stands, that i have to open and compile Tee7QR4D11.dpk and DclTee7QR4D11.dpk but this files are missing.
Please tell me where can i get this files.
With regards
Miran
Tee7QR4D11.dpk and DclTee7QR4D11.dpk missing in instalation
Hi Miran,
You should find the TQR sources at "C:\Program Files\Steema Software\TeeChart Standard 7 for Delphi 2007\Delphi11\QuickReport"
If you don't find them, tell us and we'll send them to you mail.
When you'll find them, you'll have to read the article with the generic instructions for QuickReport. You'll find the article here and you can look also at the instructions for TeeChart PRO v7 I posted at the forums.
You should find the TQR sources at "C:\Program Files\Steema Software\TeeChart Standard 7 for Delphi 2007\Delphi11\QuickReport"
If you don't find them, tell us and we'll send them to you mail.
When you'll find them, you'll have to read the article with the generic instructions for QuickReport. You'll find the article here and you can look also at the instructions for TeeChart PRO v7 I posted at the forums.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Hi Yeray
Thanks for help - instructions at "instructions for TeeChart PRO v7" are good (but anyway you should include the right files in the installation software). I successfully installed TQR 2 days ago.
But i steel have big problem and i can't solve it.
Ever i want to print a report with chart incuded my application crash and if i use debugger i get message:
"raised exception class EStackOverflow with message 'Stack overflow'."
Break point show me a line (marked with ###) in your file QrTee.pas.
----------------------------------
procedure TQRChart.Print(OfsX, OfsY : Integer);
Var QuickRect : TRect;
Procedure PrintGraphic(AGraphic:TGraphic);
begin
QRPrinter.Canvas.StretchDraw(QuickRect,AGraphic);
AGraphic.Free;
end;
Var tmpRect : TRect;
tmpChart : TQRDBChart;
begin
tmpChart:=Chart;
if Assigned(tmpChart) then
begin
{$IFNDEF NOUSE_BDE}
tmpChart.RefreshData;
{$ENDIF}
With ParentReport.QRPrinter do
begin
QuickRect:=Rect( Xpos(OfsX+Size.Left),
Ypos(OfsY+Size.Top),
Xpos(OfsX+Size.Left+Size.Width),
Ypos(OfsY+Size.Top+Size.Height));
tmpRect:=tmpChart.GetRectangle;
if Assigned(FOnPrint) then
FOnPrint(Self,QuickRect,tmpRect);
Case FTeePrintMethod of
### qtmMetafile: PrintGraphic(tmpChart.TeeCreateMetafile(True,tmpRect));
qtmBitmap: PrintGraphic(tmpChart.TeeCreateBitmap(clWhite,tmpRect));
end;
end;
end;
inherited;
end;
----------------------------------
Miran
PS:
It is the same situation on D2006 and windows XP.
Thanks for help - instructions at "instructions for TeeChart PRO v7" are good (but anyway you should include the right files in the installation software). I successfully installed TQR 2 days ago.
But i steel have big problem and i can't solve it.
Ever i want to print a report with chart incuded my application crash and if i use debugger i get message:
"raised exception class EStackOverflow with message 'Stack overflow'."
Break point show me a line (marked with ###) in your file QrTee.pas.
----------------------------------
procedure TQRChart.Print(OfsX, OfsY : Integer);
Var QuickRect : TRect;
Procedure PrintGraphic(AGraphic:TGraphic);
begin
QRPrinter.Canvas.StretchDraw(QuickRect,AGraphic);
AGraphic.Free;
end;
Var tmpRect : TRect;
tmpChart : TQRDBChart;
begin
tmpChart:=Chart;
if Assigned(tmpChart) then
begin
{$IFNDEF NOUSE_BDE}
tmpChart.RefreshData;
{$ENDIF}
With ParentReport.QRPrinter do
begin
QuickRect:=Rect( Xpos(OfsX+Size.Left),
Ypos(OfsY+Size.Top),
Xpos(OfsX+Size.Left+Size.Width),
Ypos(OfsY+Size.Top+Size.Height));
tmpRect:=tmpChart.GetRectangle;
if Assigned(FOnPrint) then
FOnPrint(Self,QuickRect,tmpRect);
Case FTeePrintMethod of
### qtmMetafile: PrintGraphic(tmpChart.TeeCreateMetafile(True,tmpRect));
qtmBitmap: PrintGraphic(tmpChart.TeeCreateBitmap(clWhite,tmpRect));
end;
end;
end;
inherited;
end;
----------------------------------
Miran
PS:
It is the same situation on D2006 and windows XP.
Hi miran,
Thanks for reporting us this problem, we've been able to reproduce it. We're working on it trying to find where the problem is to fix it. I'll back to you with the results.
Thanks for reporting us this problem, we've been able to reproduce it. We're working on it trying to find where the problem is to fix it. I'll back to you with the results.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Hi miran,
I'm sorry, I was confused. My problem was different and I solved it by simply adding the OpenGL unit. Now I can print correctly a QuickReport with a QRBand and a TQRChart on it doing "QuickRep1.print;"
So please, could you send us a simple example project we can run "as-is" to reproduce the problem here? Or could you please tell me the steps I miss to reproduce it?
You can either post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.
I'm sorry, I was confused. My problem was different and I solved it by simply adding the OpenGL unit. Now I can print correctly a QuickReport with a QRBand and a TQRChart on it doing "QuickRep1.print;"
So please, could you send us a simple example project we can run "as-is" to reproduce the problem here? Or could you please tell me the steps I miss to reproduce it?
You can either post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Hi Yeray
I expected your answer about my problem by mail and i didn't checked answers on forum. I was also occupied with other tasks.
Now - I had uploaded an example (ZIP file) and some print-screens (DOC file), that can probably help you. As I understand this problem there is something wrong with printer settings (look at print screens please), but it is interesting that in design time (from editing Chart Form) I can successfuly print chart.
Regards
Miran
I expected your answer about my problem by mail and i didn't checked answers on forum. I was also occupied with other tasks.
Now - I had uploaded an example (ZIP file) and some print-screens (DOC file), that can probably help you. As I understand this problem there is something wrong with printer settings (look at print screens please), but it is interesting that in design time (from editing Chart Form) I can successfuly print chart.
Regards
Miran
Hi miran,
We've made some tests and we are going to send you some files to your registered mail account because we'd like you to do some tests.
Note: We'll send you this mail as soon as we recover our mail server. Expected in not many hours.
We've made some tests and we are going to send you some files to your registered mail account because we'd like you to do some tests.
Note: We'll send you this mail as soon as we recover our mail server. Expected in not many hours.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
DclTee7QR4D11.dpk
I have the same problem to get DclTee7QR4D11.dpk. I cannot change all my application's from D7 to D2007 because of this problem. I need help !
Hi Faldun,
Please, could you explain what is the exactly problem you have? Printing, upgrading to D2007 or installing TQRChart? Give us more details and/or send us a simple example project we can run "as-is" to reproduce the problem here.
You can either post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.
Please, could you explain what is the exactly problem you have? Printing, upgrading to D2007 or installing TQRChart? Give us more details and/or send us a simple example project we can run "as-is" to reproduce the problem here.
You can either post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |