Okay, I figured it out. I had to edit several of the source files, but I finally got it to compile.
Thanks!
Search found 9 matches
- Fri Apr 28, 2006 5:53 pm
- Forum: VCL
- Topic: TeeChart 7.07 compliation problems in Series.pas in Kylix 3
- Replies: 1
- Views: 4240
- Thu Apr 27, 2006 10:09 pm
- Forum: VCL
- Topic: TeeChart 7.07 compliation problems in Series.pas in Kylix 3
- Replies: 1
- Views: 4240
TeeChart 7.07 compliation problems in Series.pas in Kylix 3
I'm trying to compile 7.07 under kylix 3 from source. I'm following the instructions in the Kylix.txt file included with the source code. However, I'm getting a lot of compilation errors regarding the use of TRect in Series.pas. Is this a known problem? If so, what is the solution? I can be contacte...
- Mon Mar 21, 2005 1:43 pm
- Forum: VCL
- Topic: TeePreviewPanel and selecting chart to change margins
- Replies: 2
- Views: 5262
- Thu Mar 17, 2005 7:10 pm
- Forum: VCL
- Topic: Printing custom draw items from TeePreviewPanel
- Replies: 2
- Views: 5373
OnAfterDraw event
Ok, I found the answer, it just wasn't obvious (to me at least). The OnAfterDraw event gets called when printing as well as for drawing on screen. I can now move forward.
- Thu Mar 17, 2005 3:46 pm
- Forum: VCL
- Topic: Printing custom draw items from TeePreviewPanel
- Replies: 2
- Views: 5373
Printing custom draw items from TeePreviewPanel
Should the TeePreviewPanel.Print command print the custom drawn items that I put on the preview "paper'? If not how do I go about printing these item? I have multiple charts on the paper and have text under each chart (not in the chart itself). I am using Delphi 2005 and TeeChart Pro V7.04. Thanks f...
- Mon Mar 14, 2005 11:39 pm
- Forum: VCL
- Topic: TeePreviewPanel and selecting chart to change margins
- Replies: 2
- Views: 5262
TeePreviewPanel and selecting chart to change margins
I have a TeePreviewPanel with 2 charts. Is there a way to change which chart gets the focus for margin manipulation? I am using Delphi 2005 and TeeChart Pro V7.04.
- Fri Oct 01, 2004 2:21 pm
- Forum: VCL
- Topic: Using Clipboard in CLX
- Replies: 0
- Views: 4861
Using Clipboard in CLX
Is it just me or does everyone have problems with CLX. I have a Delphi 7 application running in Windows with CLX components and using TeeChart Pro 7 (CLX). I have a chart I want to copy to the clipboard so I call 'Chart1.CopyToClipboardBitmap;'. This doesn't seem to copy anything to the clipboard. I...
- Mon Sep 27, 2004 1:20 pm
- Forum: VCL
- Topic: Printing in CLX
- Replies: 3
- Views: 7057
I checked the Printer.PageWidth and Printer.PageHeight in both CLX and VCL. CLX version - PageWidth = 5100 PageHeight = 6600 VCL version - PageWidth = 4800 PageHeight = 6400 Not much different. I also tried setting arect.Width to 2000 and arect.Height to 3000 with no effect. I did notice something i...
- Thu Sep 23, 2004 2:11 pm
- Forum: VCL
- Topic: Printing in CLX
- Replies: 3
- Views: 7057
Printing in CLX
I am having a problem printing in CLX. This is just a real basic print. All I am doing is printing my chart to the top half of a page. Printer.BeginDoc; { <-- start printer job } try arect.Left := 10; arect.Right := Printer.PageWidth - 10; arect.Top := 10; arect.Bottom := (Printer.PageHeight - 10) d...