Script.HideWaitWindow()
.HideWaitWindow() hides the wait window at the bottom of the DEACOM application. This window typically appears on long running reports and has a spinning wheel icon in it.
Applies To
Properties and Methods
None
Available
The .HideWaitWindow() method is available in:
- 16.07.024
- 17.00.007
- All newer builds
Type
Method
Syntax
Script.HideWaitWindow();
Parameters
None
Example
//--add this script to the open event on the NewOrd1 form layout
Script.ShowWaitWindow('Hello World! Waiting for a script to run.');
Script.Sleep(3000); //--Wait 3 seconds
Script.HideWaitWindow();
/* Expected Prompt Response:
.HideWaitWindow() will close the Wait Window.
*/