Tee Chart error - Property FilterDropDown does not exist
Posted: Tue Sep 22, 2009 1:21 pm
I just upgraded TeeChart from V7.04 to to 8.06 for Delphi 6. I try to compile an existing mature application and now get an error that a FilterDropDown property does not exist (see screen capture).
It seems to occur in the Instance.Create of this procedure:
procedure TApplication.CreateForm(InstanceClass: TComponentClass; var Reference);
var
Instance: TComponent;
begin
Instance := TComponent(InstanceClass.NewInstance);
TComponent(Reference) := Instance;
try
Instance.Create(Self);
except
TComponent(Reference) := nil;
raise;
end;
if (FMainForm = nil) and (Instance is TForm) then
begin
TForm(Instance).HandleNeeded;
FMainForm := TForm(Instance);
end;
end;
The project builds and runs successfully on a different computer that is still running Steema TeeChart Version 7.04 for Delphi 6
The AdvStringGrid1 shows a Version of 4.6.1.0 in the Object Inspector (shows the same on the V7.04 system too)
I have uninstalled and reinstalled TeeChart with no change. The program won't start
Any ideas?
It seems to occur in the Instance.Create of this procedure:
procedure TApplication.CreateForm(InstanceClass: TComponentClass; var Reference);
var
Instance: TComponent;
begin
Instance := TComponent(InstanceClass.NewInstance);
TComponent(Reference) := Instance;
try
Instance.Create(Self);
except
TComponent(Reference) := nil;
raise;
end;
if (FMainForm = nil) and (Instance is TForm) then
begin
TForm(Instance).HandleNeeded;
FMainForm := TForm(Instance);
end;
end;
The project builds and runs successfully on a different computer that is still running Steema TeeChart Version 7.04 for Delphi 6
The AdvStringGrid1 shows a Version of 4.6.1.0 in the Object Inspector (shows the same on the V7.04 system too)
I have uninstalled and reinstalled TeeChart with no change. The program won't start
Any ideas?