Home General
New Blog Posts: Merging Reports - Part 1 and Part 2

RB 7 Issues

edited September 2002 in General
I installed RB 7 with no major problems.

After hunting down where you moved code from one unit to another, reworking
my components and TExtraDev's to work, it all worked pretty well,
EXCEPT.....(You knew that was coming).

I have a report on a form, that report has a two TeeChart 's on a subreport.
I can open it fine in design, I opened it, closed it, resaved, rebuilt, etc.
I get a runtime error of:

Class TLineSeries not found.

(BTW, I have the full version of TeeChart)

Can you help?

Comments

  • edited September 2002
    Hi Wayne,

    have a look at "RB7 for D6 and TppChart" with date 10.Sep. 2002 in this
    group

    Knut

  • edited September 2002
    Teechart source in Series.pas is registering their series after checking
    assigned first

    if Assigned(ASeriesClass) then Classes.RegisterClass(ASeriesClass);

    So, for now, until we resolve why this isn't working as it did before, just
    add the registration call for your series class in your form unit.

    uses
    Series;

    initialization
    RegisterClass(TBarSeries);


    Cheers,

    Jim Bennett
    Digital Metaphors

This discussion has been closed.