Tee Chart error - Property FilterDropDown does not exist

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Track1
Newbie
Newbie
Posts: 13
Joined: Mon Sep 21, 2009 12:00 am

Tee Chart error - Property FilterDropDown does not exist

Post by Track1 » 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?
Attachments
AdvStringGridError_ObjectInspector.JPG
AdvStringGridError_ObjectInspector.JPG (77.55 KiB) Viewed 4168 times
AdvStringGridError_Since_8.06.JPG
AdvStringGridError_Since_8.06.JPG (24.51 KiB) Viewed 4167 times

Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Tee Chart error - Property FilterDropDown does not exist

Post by Yeray » Tue Sep 22, 2009 2:55 pm

Hi Track1,

TAdvStringGrid is not a Steema component. Please check that this component is correctly installed in your machine.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Track1
Newbie
Newbie
Posts: 13
Joined: Mon Sep 21, 2009 12:00 am

Re: Tee Chart error - Property FilterDropDown does not exist

Post by Track1 » Wed Sep 23, 2009 9:25 am

Ooops!

Thanks

Post Reply