Codeunit 1815 Progress Dialog, source in 29
Source29
src/Layers/W1/BaseApp/Utilities/ProgressDialog.Codeunit.al45 lines, Copyright (c) Microsoft Corporation. MIT
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace Microsoft.Utilities;
codeunit 1815 "Progress Dialog"
{
trigger OnRun()
begin
end;
var
ProgressWindow: Dialog;
WindowUpdateDateTime: DateTime;
CurrentRecCount: Integer;
ProgressCopyCountMaxMsg: Label 'Copying #1###### #2###### out of #3#######', Comment = '#1######=Type of object copied; #2######=amount copied;#3#######=total amount to copy';
ProgressCopyCountMsg: Label 'Copying #1###### #2######', Comment = '#1######=Type of object copied; #2######=amount copied';
procedure OpenCopyCountMax(Type: Text; MaxCount: Integer)
begin
CurrentRecCount := 0;
ProgressWindow.Open(ProgressCopyCountMaxMsg, Type, CurrentRecCount, MaxCount);
WindowUpdateDateTime := CurrentDateTime;
end;
procedure OpenCopyCount(Type: Text)
begin
CurrentRecCount := 0;
ProgressWindow.Open(ProgressCopyCountMsg, Type, CurrentRecCount);
WindowUpdateDateTime := CurrentDateTime;
end;
procedure UpdateCopyCount()
begin
CurrentRecCount += 1;
if CurrentDateTime - WindowUpdateDateTime >= 300 then begin
WindowUpdateDateTime := CurrentDateTime;
ProgressWindow.Update(2, CurrentRecCount);
end;
end;
}