Bug Report T913300
Visible to All Users

The "Invalid operation in GDI+ (Code: 11)" exception can occur on drawing an extra pane item of a TdxBarApplicationMenu component if its ExtraPane.AllowPinItems property is set to False

created 5 years ago

When drawing the elements in the ExtraPane in the application menu of a ribbon, an EdxGdipException may occur with the message listed in the subject. TdxBarSkinnedPainter.ExtraMenuDrawButton() has the following line of code to :

Delphi
ExtraMenuDrawPinButton(ADrawParams, ADrawParams.BarItemControl.FParts[epbcpPinButton]);

This is all well and good, except the FParts field (part of TdxBarItemControl) is a dynamic array whose length is defined by the TdxBarItemControl.GetPartCount() virtual call. In this function call, BarItemControl is of type TdxBarExtraPaneButtonControl, meaning the GetPartCount() is overridden in TdxBarButtonControl.GetPartCount(). We see TdxBarButtonControl.GetPartCount() defined as the following:

Delphi
function TdxBarButtonControl.GetPartCount: Integer; begin if FDrawParams.IsDropDown then Result := 2 else Result := 1; end;

The gist of all of this is that FParts is indexed to index epbcpPinButton (index 1), when the array may only have 1 valid index, namely index 0. As a result, down the line when TdxGPCanvas.FillRectangle() is called and passed a TRect from a region beyond the end of the valid FParts array, GDI+ will complain about an invalid rectangle. Somehow a check needs to be performed before to see if calling ExtraMenuDrawPinButton() is even necessary so that the dynamic array isn't indexed beyond its valid end.

Comments (3)
DevExpress Support Team 5 years ago

    Hello,

    Thank you for sharing your research results. It seems that you are right. We will try to find an appropriate solution to this problem.

    May I make the content of this ticket visible to other visitors of our site? When we find a solution, it may be useful to them.

    K K
    Kyle A. Johnson 5 years ago

      Absolutely…I wasn't sure if you would want it public or not, so I figured I'd start private and let you decide accordingly. Thank you for the quick response!

      DevExpress Support Team 5 years ago

        Thanks a lot!

        Answers approved by DevExpress Support

        created 5 years ago

        We have addressed the issue described in this ticket and will include a fix in our next maintenance update. To apply this solution before official release, request a hotfix by clicking the appropriate version link.

        Note: Hotfixes may be unavailable for betas/updates set for release within a week.

          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.