Syntax |
Example |
Description/Remarks |
DOZE milliseconds |
DOZE 20000 This causes the template to wait 20 seconds before performing the next function, during which time the user can interact with the screen. DOZE 1000 Causes the template to wait for 1 second before performing the next function. |
DOZE will delay template functioning for the specified number of milliseconds, with 1000 milliseconds = 1 second. This command allows the user to perform other functions on the workstation during the delay. To implement a delay where the user cannot interact with the program, use SLEEP. Note: If the user clicks on another tab on the data entry screen, the delay will be interrupted until the user clicks the Data Entry tab and presses the ENTER key. DOZE does not display a special interface to the user during the delay. To implement a delay with a user interface, use DELAY or TIMER_DELAY. Note: In templates designed to access external data in the SPC Charts and Reports module, the DOZE command should be the last command in the cell's formula. This command does not return a value. |