csrwait( ) Function
Description:
| |
The csrwait function displays the wait cursor. |
|
Syntax:
Parameters:
| |
numeric: status |
Cursor on = 1. Cursor off = 0. |
Platforms:
| |
Windows, DOS, Internet Active Pages |
Example:
println("Hello, Wait for 5 seconds")
csrwait(1)
delay(5000,0)
println()
println("Time's up")
csrwait(0)
|
|