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?
Tee Chart error - Property FilterDropDown does not exist
Tee Chart error - Property FilterDropDown does not exist
- Attachments
-
- AdvStringGridError_ObjectInspector.JPG (77.55 KiB) Viewed 4193 times
-
- AdvStringGridError_Since_8.06.JPG (24.51 KiB) Viewed 4192 times
Re: Tee Chart error - Property FilterDropDown does not exist
Hi Track1,
TAdvStringGrid is not a Steema component. Please check that this component is correctly installed in your machine.
TAdvStringGrid is not a Steema component. Please check that this component is correctly installed in your machine.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |