Bug Report Q558336
Visible to All Users

Destroying a bar manager via its Free method doesn't immediately remove built-in dock controls, which results in delayed updates to a form's ControlCount property

created 11 years ago

Create a TdxBarManager on Application.Mainform, will create additional 4 TdxDockControl instances in the form. This can be detected in TForm.ControlCount property.

However, when the TdxBarManager instance is free, the TForm.ControlCount value remain and didn't decrease. This issue may cause error (not always) in the following code (unit Forms.pas):

Delphi
procedure TraverseClients(Container: TWinControl); var I: Integer; Control: TControl; begin if Container.Showing and not (csDesigning in Container.ComponentState) then for I := 0 to Container.ControlCount - 1 do begin Control := Container.Controls[I]; if (csActionClient in Control.ControlStyle) and Control.Visible then Control.InitiateAction; if (Control is TWinControl) and (TWinControl(Control).ControlCount > 0) then TraverseClients(TWinControl(Control)); end; end;

To replay the problem, run the following code:

Delphi
var i1, i2, i3: Integer; B: TdxBarManager; begin // Get initial control count i1 := Application.MainForm.ControlCount; B := TdxBarManager.Create(Application.MainForm); i2 := Application.MainForm.ControlCount; // control count increased by 4 TdxDockControl Assert(i2 = i1 + 4); B.Free; // After free TdxBarManager instance, control count didn't decrease i3 := Application.MainForm.ControlCount; Assert(i3 = i1); end;
Show previous comments (1)
DevExpress Support Team 11 years ago

    I am afraid this information is not enough to answer you precisely why this happens. Would you please provide us with a sample project to demonstrate the issue and more detailed information about the functionality you are trying to implement?

      The problem doesn't happen in standalone application. It happen to those application built with runtime packages. I have attached a sample project that built with runtime packages and you should be able to replay the problem.

      DevExpress Support Team 11 years ago

        Hello,
        Thank you for the clarification. I am forwarding this issue to our developers for further processing.
        You will receive an automatic message once the status of this issue is changed.

        Answers approved by DevExpress Support

        created 11 years ago (modified 11 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.

          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.