Bug Report Q480634
Visible to All Users

TcxPageControl - The "List index out of bounds" exception is thrown when sequentially closing the first and then the second pages using the Close button of the navigator bar

created 12 years ago

I create some Pages add runtime. When I close the last page with the close button of the pagecontrol then i get 'List index out of bound' after the second close.
When I select manual a page and close the page then I don't have th error. i think when i close one page with the button then i don't get the active index page. So when i close the second page i get the error.

Comments (1)
DevExpress Support Team 12 years ago

    Hello,
    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 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.

      Show previous comments (5)
      DevExpress Support Team 12 years ago

        Hello TOMAŽ,
        Changing the ChangeActivePage method in the cxPC.pas file this way fixes the problem in VCL 12.2.4:

        Delphi
        procedure TcxPageControlProperties.ChangeActivePage(APage: TcxTabSheet); procedure DoChangeActivePage; begin if FActivePage <> nil then FActivePage.Visible := False; FActivePage := APage; end; procedure DoMakeVisibleActivePage; begin if FActivePage <> nil then begin FActivePage.BringToFront; FActivePage.Visible := True; FActivePage.Invalidate; end; end; function DoFindActiveControl(AParentForm: TCustomForm): TWinControl; begin if (APage <> nil) and (AParentForm <> nil) and (FActivePage <> nil) and (AParentForm.ActiveControl = FActivePage) then begin if APage.Enabled and Control.Visible and Control.Enabled and Control.Parent.CanFocus then Result := APage else Result := Control; end else Result := nil; end; procedure DoSetActiveControl(AParentForm: TCustomForm; AActiveControl: TWinControl); begin if AActiveControl <> nil then AParentForm.ActiveControl := AActiveControl; if (AParentForm <> nil) and (FActivePage <> nil) and (AParentForm.ActiveControl = FActivePage) then FActivePage.SelectFirst; end; procedure SynchronizeTabIndex; begin if ActivePage = APage then begin BeginUpdate; FActivePageSetting := True; try if (APage <> nil) and APage.TabVisible then TabIndex := APage.FTab.Index else TabIndex := -1; finally FActivePageSetting := False; EndUpdate; end; end; end; var ANewActiveControl: TWinControl; AParentForm: TCustomForm; AModified: Boolean; begin if FActivePage <> APage then begin if not CanChangeActivePage(APage) then Exit; LockNotifyEvents(True); try AParentForm := GetParentForm(Control); if (AParentForm <> nil) and (FActivePage <> nil) and FActivePage.ContainsControl(AParentForm.ActiveControl) then begin AParentForm.ActiveControl := FActivePage; if AParentForm.ActiveControl <> FActivePage then begin TabIndex := FActivePage.FTab.Index; Exit; end; end; ANewActiveControl := DoFindActiveControl(AParentForm); DoChangeActivePage; DoMakeVisibleActivePage; DoSetActiveControl(AParentForm, ANewActiveControl); finally LockNotifyEvents(False); end; AModified := True; end else AModified := False; SynchronizeTabIndex; if AModified then begin DoPageChange; Control.SetModified; end; end;

          It works like a charm!
          Thank you for your fast answer.

          DevExpress Support Team 12 years ago

            Great news! Thanks.

            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.