Search found 5 matches

by RichTat
Thu Jul 08, 2010 2:43 pm
Forum: VCL
Topic: Loosing TeeChart reference.
Replies: 7
Views: 9576

Re: Losing TeeChart reference.

Hi Narcis I do not understand your comments. Of course my project, which has a TeeChart with a Pie Series, references the unit Series.hpp and includes the declarations: TChart Chart1; TPieSeries Series1; and the library search paths include the TeeChart libraries. If I build the project with runtime...
by RichTat
Wed Jul 07, 2010 11:23 am
Forum: VCL
Topic: Loosing TeeChart reference.
Replies: 7
Views: 9576

Re: Loosing TeeChart reference.

Hi Narcis This problem has appeared with my C++Builder 2010 and the error message when I load a previously-made project with a series is something similar to: Class TPieSeries not found. Right-click does not produce the 'Edit Chart' option. The only way to get rid of the error message and enable the...
by RichTat
Mon Jun 28, 2010 2:22 pm
Forum: VCL
Topic: TChart repaint failure
Replies: 10
Views: 31186

Re: TChart repaint failure

Hi Narcis I have tried my program executable on 2 XP and one Vista PC all with the predicted result of non-painting. I build the project without runtime packages. You can download my C++ Builder 2010 test project at http://reetec.co.uk/files/useful/steema99.zip This includes the project files (based...
by RichTat
Wed Jun 23, 2010 3:07 pm
Forum: VCL
Topic: TChart repaint failure
Replies: 10
Views: 31186

Re: TChart repaint failure

Hello Narcis Proceed as follows with C++ Builder 2010 and TeeChart 2010: Step 1: Create a form Step 2: Add a TChart component Chart1 (no editing necessary) Step 3: Add a button Step 4: Add button click code to produce the following code module: #include <vcl.h> #pragma hdrstop #include "Unit04.h" //...
by RichTat
Mon Jun 21, 2010 3:47 pm
Forum: VCL
Topic: TChart repaint failure
Replies: 10
Views: 31186

TChart repaint failure

TeeChart 2010 does not always repaint a chart after window is brought to the foreground. Example to illustrate the problem in C++Builder 2010: create series values on form show event with Series1->Add() and add a button with code: Chart1->TeeCreateBitmap(clRed,Chart1->ClientRect); After clicking the...