V8.06 - Bug series source list filling
Posted: Fri Oct 16, 2009 11:13 am
There was a Bug in the Version 8, which was described in this topic
http://www.teechart.net/support/viewtop ... eries+list
But the correction in V8.06 doesn't work with charts on frames, because of a little mistake in the
procedure AddMDISources in the unit TeeFuncEdit.pas:
The Compiler Directive should be a {$IFDEF D4}.
Regards Rita
http://www.teechart.net/support/viewtop ... eries+list
But the correction in V8.06 doesn't work with charts on frames, because of a little mistake in the
procedure AddMDISources in the unit TeeFuncEdit.pas:
Code: Select all
procedure AddMDISources;
var t : Integer;
begin
...
//Charts may, also reside on frames of MDI forms
if (Components[t] is TCustomChart)
{$IFNDEF D4} or (Components[t] is TCustomFrame){$ENDIF} then
Regards Rita