Bug in TeeTree 2

TeeTree VCL for Borland Delphi and C++ Builder.
Post Reply
SMN
Newbie
Newbie
Posts: 3
Joined: Wed May 19, 2004 4:00 am

Bug in TeeTree 2

Post by SMN » Fri Dec 01, 2006 1:46 pm

I met a exception in TeeTree.pas.
Line 5951 reads:
for t:= 0 to Length(tmpCurve) do

I think this should be (but I don't know the code in detail)
for t:= 0 to Length(tmpCurve)-1 do

Or am I wrong?

tom
Advanced
Posts: 211
Joined: Mon Dec 01, 2003 5:00 am
Contact:

Post by tom » Sun Dec 03, 2006 10:59 am

Hi,

Which version of teeChart Pro/ teeTree are you using? This line has been replaced, in the recent versions, by

Code: Select all

for t:= 0 to High(tmpCurve) do
regards,
tom

SMN
Newbie
Newbie
Posts: 3
Joined: Wed May 19, 2004 4:00 am

Post by SMN » Mon Dec 04, 2006 10:53 am

I'm using version TeeTree 2.0 which I downloaded about one month ago. It is the Delphi 6 code for TeeChart 7.
I just downloaded TeeTree 2 from the web site again but this bug is still in the original code.

SMN
Newbie
Newbie
Posts: 3
Joined: Wed May 19, 2004 4:00 am

Post by SMN » Mon Dec 04, 2006 11:03 am

I just found out that the TeeTree 2.0 source which is delivered with TeeChart 7.07 is more recent than the TeeTree 2.0 code which you can download separately from the web site.

tom
Advanced
Posts: 211
Joined: Mon Dec 01, 2003 5:00 am
Contact:

Post by tom » Wed Dec 06, 2006 12:03 am

Since teeChart Pro v7.0, teeTree is included as a free add-on to teeChart Pro. There is no standalone teeTree version anymore.

Post Reply