Dear Sirs,
We've recently upgraded from Delphi 6 to Delphi XE3 along with an upgrade of the Developer Express components. We're experiencing an Access Violation error in the ExpressBars component at the point when the application is terminated. This seems to be due to the following change in dxBar.pas
---> dxBar.pas, Delphi 6:
procedure TdxBarItem.VisibleChanged;
var
I: Integer;
PrevLockUpdate: Boolean;
begin
…
if
Links[I].Control = nil then Links[I].CreateControl;
if
Links[I].Control <> nil then //
additional check here
Links[I].Control.VisibleChanged;
…
end;
—>
dxBar.pas, Delphi XE3:
procedure
TdxBarItemLink.VisibleChanged;
begin
…
CreateControl; // additional BarControl.IsDestroying check
here
Control.VisibleChanged; // Control = nil is possible when
Application is terminating
…
end;
The project attached shows a simple example of this.
Thanks,
Paul
Hello,
I have reproduced the described behavior with VCL 12.2.5. Would you please clarify why it is necessary to change the item visibility on destroying the form? Perhaps, the <Form>.CloseQuery event will better meet your requirements.
Hello,
Thanks for the reply on this.
We’ve upgraded a large amount of code from Delphi 6 up to Delphi XE3, along with the component upgrades, and noticed this issue. So I thought it worth letting you guys know that what previously wasn’t an issue now is.
It looks like this can be fixed by adding one check (“if Control <> nil”) in the dxBar code. We’ll make this change in the dxBar source code for now as there could be many places where this could potentially occur in our older code.
This isn’t a high priority defect, but I think an AV shouldn’t appear in any conditions and components shouldn’t rely on “correct usage”. If “correct usage” requirement can’t be avoided somewhere, then special exceptions should be thrown in wrong scenarios rather than an AV.
Hopefully you guys are able to apply this simple fix so we don’t need to keep maintaining the code change when upgrading to each new release of ExpressBars.
Thanks,
Paul
Hi,
OK. I understand your point of view and have forwarded this ticket to our developers for research. Perhaps, it is possible to change this behavior.