I have an app that I wrote in Delphi XE using a downloaded component package. I have now installed Delphi XE2, and I am trying to load the same app code. But when I compile, it now generates an error: "[DCC Error] (): E2362 Cannot access protected symbol TControl.Left"
The line it is stopping on is simply a reference to a component name. For some reason, instead of using the component, it working all the way back through to TControl. It does this for both the Left and the Top attributes, but not for Height and Width. Left and Top are published members since they are accessible in the Object Inspector. The same code still compiles perfectly in XE.
If I create a new VCL application, add the same component, and try the same convention there is no problem. I have to think there is some sort of XE2 project setting causing this. Can anyone help? I don't have the time to recreate every form.
The external package can be found here: link.
Here is the code:
pnlSpeedo: TPanel;
agRollerSpeed: TILAngularGauge;
...
procedure ResizeCycle;
var
IdealHeight, IdealWidth: Integer;
begin
agRollerSpeed.Top := 16;
agRollerSpeed.Left := 0;
IdealWidth := (pnlSpeedo.ClientWidth - 16 - 16) div 2;
IdealHeight := pnlSpeedo.ClientHeight - 16 - 16;
if (IdealHeight > IdealWidth) then
begin
agRollerSpeed.Width := IdealWidth;
agRollerSpeed.Height := IdealWidth;
end
else
begin
agRollerSpeed.Width := IdealHeight;
agRollerSpeed.Height := IdealHeight;
end;
end;
The error message "[DCC Error] Cycle.pas(2021): E2362 Cannot access protected symbol TControl.Top" is displayed on the line... agRollerSpeed.Top := 16;
I didn't paste code because it's not a code error. The code works fine (on XE), but generates an error on XE2u4. I have to think that is a project setting of some sort, one that changes between the two versions.
LeftandTophave not been published. Either you work it out for yourself, or you show us enough code for us to work it out for you. – David Heffernan Aug 8 '12 at 15:48