DISPLAYPROGRESSTIME |
DEVELOPER |
|
|
Purpose |
.DisplayProgessTime allows you to specify or retrieve, for the Application object, the time interval (in seconds) in which the count of records processed so far is updated. |
Object Type |
Application |
Syntax |
Setting: ObjectReference.DisplayProgessTime = Value |
Operation |
ObjectReference is the Tag Name of the Application object. |
Remarks |
This feature can be used in cycles and during all sorts. As it is an Application property, once enabled, it remains in effect for all functions until it is explicitly disabled. When the number changes, this indicates that the record count is occurring. When it remains static, the record count is not occurring. The counter is reset every time there is screen entry, and the number does not change during screen execution. It provides an approximate indication of how many records are being processed, it does not display the actual total, and it does not report the number of primary records, but the number of file accesses, both read and write. Counting begins at zero when the user returns input to the PROIV Virtual Machine. |
Example |
To set the display interval to fifteen seconds: Application.DisplayProgressTime = 15
To turn off the display of records processed: Application.DisplayProgressTime = 0 |
Topic ID: 510052