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.
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
Answers approved by DevExpress Support
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.
- v13.1.2Download Official Update
- v12.2.5Download Official Update
- v12.1.8Download Official Update
Hello TOMAŽ,
Changing the ChangeActivePage method in the cxPC.pas file this way fixes the problem in VCL 12.2.4:
Delphiprocedure 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;
Hello,
Thank you for your report. I have reproduced the described behavior and forwarded this ticket to our developers for research.