RxFPC:RxMDI - new property RxMDIPanel1.WindowMenu - show MDI windows in main menu

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6792 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
alexs75
2019-01-17 08:37:42 +00:00
parent 5514aca70f
commit a858d685fa
6 changed files with 165 additions and 11 deletions

View File

@ -6267,14 +6267,20 @@ procedure TRxDBGrid.ErrorPo(DataSet: TDataSet; E: EDatabaseError;
var DataAction: TDataAction);
var
i: integer;
F: TRxColumnFooterItem;
R: TRxColumn;
begin
if FFooterOptions.Active and (DatalinkActive) then
for i := 0 to Columns.Count - 1 do
begin
R:=TRxColumn(Columns[i]);
F:=TRxColumn(Columns[i]).Footer;
if not TRxColumn(Columns[i]).Footer.ErrorTestValue then
begin
FInProcessCalc := -1;
Break;
end;
end;
if Assigned(F_EventOnPostError) then
F_EventOnPostError(DataSet, E, DataAction);
end;