Search found 42 matches

by kev
Mon Jan 27, 2014 1:33 pm
Forum: VCL
Topic: SeriesBand transparency
Replies: 1
Views: 4638

SeriesBand transparency

I am trying to make some code mods on some legacy code that used TeeChart Pro v7 for VCL (Borland Builder). I need to add a transparent SeriesBand that will allow other PointSeries to show through. I managed to do this using the normal SeriesBand for TDBChart, but for some reason I cannot get it to ...
by kev
Wed Oct 28, 2009 5:02 pm
Forum: VCL
Topic: ColorGridSeries AddArray
Replies: 1
Views: 4709

ColorGridSeries AddArray

I need to stuff into a ColorGridSeries using the AddArray method, but cannot figure out how to get it to work. I cannot find a Borland C++ Builder example that shows this and have not been able to find anything in the TChart help. I am using AddArray on several other charts with LineSeries and they ...
by kev
Fri Apr 11, 2008 2:37 pm
Forum: VCL
Topic: Trying to Reinstall old version TeeChart7
Replies: 5
Views: 9590

Ok, I got the old Ver. 7 TeeChart to install. I think it had to do mostly with getting the proper libraries in to the System32 directory. Now I cam load all the forms including the QReports, but I still cannot compile. I am getting a huge list of errors like: [C++ Error] TeeTools.hpp(45): E2316 'TTe...
by kev
Thu Apr 10, 2008 7:47 pm
Forum: VCL
Topic: Trying to Reinstall old version TeeChart7
Replies: 5
Views: 9590

UPDATE As a test, I tried installing V7 on a different machine that had only the Borland included version of TChart on it. It seemed to install fine. So, I bit the bullet and un-installed Builder. I reinstalled and then tried installing V7 again. I got the same freaking message as before! What is go...
by kev
Thu Apr 10, 2008 4:21 pm
Forum: VCL
Topic: Trying to Reinstall old version TeeChart7
Replies: 5
Views: 9590

I copied the Tee 7 Pro folder from a Ghost Image I had before my computer crashed and tried to install that without running any installer or recompiling anything. I Add the DclTee7C6.bpl and it shows up in the components list. I then try to Add DClTeePro7C6.bpl or DclTeeProStd7C6.bpl and this error ...
by kev
Thu Apr 10, 2008 4:11 pm
Forum: VCL
Topic: Trying to Reinstall old version TeeChart7
Replies: 5
Views: 9590

Trying to Reinstall old version TeeChart7

After having no success getting ver 8 to work with any of my old project which include QRCharts, I am trying to get back to where I started with ver 7. I ran the installation, but there is an error that pops up at the end which reads: EXCEPTION: Can't load package D:\BUILDE~1\COMPON~1\TE0A17~1\TEECH...
by kev
Thu Apr 10, 2008 2:22 pm
Forum: VCL
Topic: TeeChart 8.02 QReport
Replies: 8
Views: 13775

I installed into the V8 folder and recompiled the TQRChart packages. I went to an old project that uses TCharts and TQRCharts and tried to build. Opening the project showed that the Charts were now V8, but as soon as I tried to open the QReport page, the IDE complained that it there was an entry poi...
by kev
Thu Apr 10, 2008 11:36 am
Forum: VCL
Topic: TeeChart 8.02 QReport
Replies: 8
Views: 13775

I got the file, but what do I do with it? Is it for Ver. 8? I already uninstalled 8 and have tried to go back to 7, but 2 things have happened. FIrst, the flickering charts show up again in design time. I had this before (after reinstalling borland on new machine), but at least it compiled ok. Now I...
by kev
Wed Apr 09, 2008 6:53 pm
Forum: VCL
Topic: TeeChart 8.02 QReport
Replies: 8
Views: 13775

TeeChart 8.02 QReport

I have upgraded from Ver. 7 and now, upon recompiling existing source, the exe crashes before it ever gets displayed. Stepping through the code, I find that the crash occurs when the form with the QReport and TQRChart is created. At that point the cursor never returns and the CPU usage goes up to ab...
by kev
Fri Mar 07, 2008 6:12 pm
Forum: VCL
Topic: ChartEditor Export Tab Error
Replies: 5
Views: 9357

Fixed it. Dnloaded the 7.7 fix and rebuilt my project.

I'm not sure, but I think it could have been the rebuild by itself.

thanks.
kev
by kev
Fri Mar 07, 2008 2:19 pm
Forum: VCL
Topic: ChartEditor Export Tab Error
Replies: 5
Views: 9357

ChartEditor Errors

By the way, I also get Errors when I click on the "Series" tab whth the message: --------------------------- My App --------------------------- Class TComboBox not found. --------------------------- OK --------------------------- as wells the "Print Tab". Both tab pages will open after dismissing th...
by kev
Fri Mar 07, 2008 2:14 pm
Forum: VCL
Topic: ChartEditor Export Tab Error
Replies: 5
Views: 9357

Export Tab error

As I said in the last post TeeChartPro v.7

I don't see a dot revision
by kev
Thu Mar 06, 2008 10:27 pm
Forum: VCL
Topic: Tutorials? WHERE?
Replies: 1
Views: 4421

Tutorials? WHERE?

Where the heck are the tutorials I see mentioned all over the place???

I know I have seen them before, but I can't find them anywhere now.
by kev
Thu Mar 06, 2008 9:39 pm
Forum: VCL
Topic: ChartEditor Export Tab Error
Replies: 5
Views: 9357

ChartEditor Export Tab Error

I am using TeeChartPro 7. I have a chart on a form along with a ChartEditor. When I run the program, I get a chart with valid data displayed. I open the Editor via a Mouse event and the Editor pops up fine. I click on the "Export" tab and get the following Error Message dialog. Any Ideas what is goi...
by kev
Thu Mar 06, 2008 9:33 pm
Forum: VCL
Topic: Bar Series Draws past Custom Vertical Axis Max
Replies: 2
Views: 5405

That might work, however I solved it by limiting the data based on the Custom left axis current max.

float max = HistoForm->HistoChart->CustomAxes->Items[0]->Maximum;

if(HistoForm->iFlawCountArray[iMotionPulse] > max)
HistoForm->iFlawCountArray[iMotionPulse] = max;


thanks