Bug Report T332830
Visible to All Users

Executing a TdxSpreadSheetCustomChangeSelectionVisibilityAction descendant causes the "Out of memory" exception if all cells are selected in a worksheet and the Undo/Redo history of actions is enabled

created 9 years ago

TdxSpreadSheetUnhideRows is not working when History=True. Check Test.zip.

Comments (2)
TH TH
Thomas Horstmann 9 years ago

    ChangeSelectedColumnsVisibility and ChangeSelectedRowsVisibility are also not working if "SelectAll" is active. I think to many rows/columns are selected in the Loop and History.BeginAction/EndAction is missing. Maybe other procedures have the same problem: TdxSpreadSheetMergeCellsAcross…

    procedure TdxSpreadSheetCustomChangeSelectionVisibilityAction.ChangeSelectedColumnsVisibility(const AValue: Boolean);
    var
     ASheet: TdxSpreadSheetTableView;
     AColumn: Integer;
    begin
     ASheet := ActiveTable;
     ASheet.BeginUpdate;
     try
      // !!! Problem, when all columns are active (Select-All) !!!
       for AColumn := ASheet.Selection.Area.Left to ASheet.Selection.Area.Right do
         ASheet.Columns.CreateItem(AColumn).Visible := AValue;
     finally
       ASheet.EndUpdate;
     end;
    end;

    I am using a procedure to check the selection rect. This should handle Select-All. Maybe helpfull:

    procedure CheckSelectionRect
    ( const iSheet : TdxSpreadSheetTableView ;
     var   iRect  : TRect                   ) ;
    begin
    { Prüfen }
    if dxSpreadSheetIsEntireColumn(iRect) then iRect.Bottom := iSheet.Rows.LastIndex ;
    if dxSpreadSheetIsEntireRow(iRect) then iRect.Right  := iSheet.Columns.LastIndex ;
    end ;

    DevExpress Support Team 9 years ago

      Hello Thomas,

      Thank you for your report. I have reproduced the described behavior and forwarded this ticket to our developers for research.

      Answers approved by DevExpress Support

      created 9 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.