Bug Report Q490246
Visible to All Users

Changing a bar item's Visible property when a form is being destroyed results in an AV

created 12 years ago

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

Comments (3)
DevExpress Support Team 12 years ago

    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

      DevExpress Support Team 12 years ago

        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.

        Answers approved by DevExpress Support

        created 12 years ago (modified 12 years ago)

        We have fixed the issue described in this ticket and will include the fix in our next maintenance update. To apply this solution before the official update, request a hotfix by clicking the corresponding link for product versions you require.

        Note: Hotfixes may be unavailable for beta versions and updates that are about to be released.

          Comments (1)

            Great stuff, many thanks guys.

            Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

            Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.