Page 1 of 1

Bug in TeeTree 2

Posted: Fri Dec 01, 2006 1:46 pm
by 9337541
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?

Posted: Sun Dec 03, 2006 10:59 am
by Tom
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

Posted: Mon Dec 04, 2006 10:53 am
by 9337541
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.

Posted: Mon Dec 04, 2006 11:03 am
by 9337541
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.

Posted: Wed Dec 06, 2006 12:03 am
by Tom
Since teeChart Pro v7.0, teeTree is included as a free add-on to teeChart Pro. There is no standalone teeTree version anymore.