Page 1 of 1

Tee Chart error - Property FilterDropDown does not exist

Posted: Tue Sep 22, 2009 1:21 pm
by 10554272
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?

Re: Tee Chart error - Property FilterDropDown does not exist

Posted: Tue Sep 22, 2009 2:55 pm
by yeray
Hi Track1,

TAdvStringGrid is not a Steema component. Please check that this component is correctly installed in your machine.

Re: Tee Chart error - Property FilterDropDown does not exist

Posted: Wed Sep 23, 2009 9:25 am
by 10554272
Ooops!

Thanks