Hello,
I have a big problem with printing in version 8 (Chart.Print or Chart.PrintRect). If I set Chart.View3D:=True then the program terminates without any message. If I set Chart.View3D:=False then the print job completes perfectly.
This occurs at all Pie an Bar-charts.
Is there any problem known?
Thanks for help.
Regards.
Josef Schliffenbacher
mail@schliff.de
Printing problems with version 8
-
- Newbie
- Posts: 4
- Joined: Mon Jan 07, 2008 12:00 am
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Josef,
Yes, this is a known issue which we fixed in v8.03 release. I've just sent you an e-mail with the URL to download it.
Yes, this is a known issue which we fixed in v8.03 release. I've just sent you an e-mail with the URL to download it.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Newbie
- Posts: 4
- Joined: Mon Jan 07, 2008 12:00 am
Hi,
Thank you for your help.
But the issue is not fixed. With Delphi7, then problem is further existing.
Please check it again.
This is my program code:
procedure TGraph01.SpeedDruckenClick(Sender: TObject);
Var TmpChart : TChart;
R : TRect;
Gradient : Boolean;
begin
If StyleArt in gsTorteSet then TmpChart:=Chart2 Else TmpChart:=Chart1;
If PrinterSetUp.Execute then
Begin
Delay(100);
If DoPrintOptions(Handle) then
Begin
TmpChart.PrintProportional:=False;
R.Left:=GlobPrintXP;
R.Top:=GlobPrintYP;
R.Right:=R.Left+GlobPrintXN;
R.Bottom:=R.Left+GlobPrintYN;
TmpChart.PrintRect(R);
End(* If *);
End(* If *);
End(* Drucken *);
Thank you.
Best Regards.
Josef.
Thank you for your help.
But the issue is not fixed. With Delphi7, then problem is further existing.
Please check it again.
This is my program code:
procedure TGraph01.SpeedDruckenClick(Sender: TObject);
Var TmpChart : TChart;
R : TRect;
Gradient : Boolean;
begin
If StyleArt in gsTorteSet then TmpChart:=Chart2 Else TmpChart:=Chart1;
If PrinterSetUp.Execute then
Begin
Delay(100);
If DoPrintOptions(Handle) then
Begin
TmpChart.PrintProportional:=False;
R.Left:=GlobPrintXP;
R.Top:=GlobPrintYP;
R.Right:=R.Left+GlobPrintXN;
R.Bottom:=R.Left+GlobPrintYN;
TmpChart.PrintRect(R);
End(* If *);
End(* If *);
End(* Drucken *);
Thank you.
Best Regards.
Josef.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Josef,
Could you please 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.
Thanks in advance.
Could you please 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.
Thanks in advance.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Newbie
- Posts: 4
- Joined: Mon Jan 07, 2008 12:00 am
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Jamie,
Sure! Just sent you the URL.
Sure! Just sent you the URL.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |