ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

New WINDEV 2024 feature!
Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
The CalculationInProgress property allows you to determine whether the data of a Pivot Table control is being calculated (synchronously or asynchronously).
Example
// Recalculation button code
PVTCalculateAllAsynchronous(PVT_Statistics, Calculation_completed)
INTERNAL PROCEDURE Calculation_completed(bOK is boolean)
IF NOT bOK THEN
Error(ErrorInfo())
RETURN
END
END
// Click code of the "Invoice details" button
IF PVT_Statistics.CalculationInProgress THEN
ToastDisplay("The data of the Pivot Table control is being calculated")
RETURN
END
Syntax
<Result> = <Pivot Table control>.CalcInProgress
<Result>: Boolean
  • True if the data of the Pivot Table control is being calculated,
  • False otherwise.
<Pivot Table control>: Control name
Name of the Pivot Table control used.
Minimum version required
  • Version 2024
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 01/18/2024

Send a report | Local help